Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Practicing Structs | Structs & Enumerators
C# Beyond Basics

Practicing StructsPracticing Structs

Fill in the blanks to create a struct called Car which has the following attributes:

  1. name of type string
  2. model of type int
  3. mileage of type float

Also fill in the blanks to complete the output statement.

cs

index.cs

1. Use the public keyword before the fields in the structure definition.
2. We use the variableName.fieldName syntax for accessing the fields and their data.

using System;

struct Car
{
    public string name;
    public int model;
    public float mileage;
}

class Program
{
    static void Main(string[] args)
    {
        Car car;

        car.model = 2023;
        car.name = "Hilux";
        car.mileage = 2000;

        Console.WriteLine($"The {car.name} has a mileage of {car.mileage} miles.");
    }
}
      

Все було зрозуміло?

Секція 2. Розділ 3
course content

Зміст курсу

C# Beyond Basics

Practicing StructsPracticing Structs

Fill in the blanks to create a struct called Car which has the following attributes:

  1. name of type string
  2. model of type int
  3. mileage of type float

Also fill in the blanks to complete the output statement.

cs

index.cs

1. Use the public keyword before the fields in the structure definition.
2. We use the variableName.fieldName syntax for accessing the fields and their data.

using System;

struct Car
{
    public string name;
    public int model;
    public float mileage;
}

class Program
{
    static void Main(string[] args)
    {
        Car car;

        car.model = 2023;
        car.name = "Hilux";
        car.mileage = 2000;

        Console.WriteLine($"The {car.name} has a mileage of {car.mileage} miles.");
    }
}
      

Все було зрозуміло?

Секція 2. Розділ 3
some-alt