Practicing Structs
Fill in the blanks to create a struct called Car
which has the following attributes:
name
of typestring
;model
of typeint
;mileage
of typefloat
.
Also fill in the blanks to complete the output statement.
index.cs
12345678910111213141516171819202122using System; struct ___ { ___; ___; ___; } class Program { static void Main(string[] args) { Car car; car.model = 2023; ___ = "Hilux"; car.mileage = 2000; Console.WriteLine($"The {car.name} has a mileage of {___} miles."); } }
Var allt tydligt?
Tack för dina kommentarer!
Avsnitt 2. Kapitel 3
Fråga AI
Fråga AI
Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal
Awesome!
Completion rate improved to 2.04
Practicing Structs
Svep för att visa menyn
Fill in the blanks to create a struct called Car
which has the following attributes:
name
of typestring
;model
of typeint
;mileage
of typefloat
.
Also fill in the blanks to complete the output statement.
index.cs
12345678910111213141516171819202122using System; struct ___ { ___; ___; ___; } class Program { static void Main(string[] args) { Car car; car.model = 2023; ___ = "Hilux"; car.mileage = 2000; Console.WriteLine($"The {car.name} has a mileage of {___} miles."); } }
Var allt tydligt?
Tack för dina kommentarer!
Avsnitt 2. Kapitel 3