Challenge: Structs
メニューを表示するにはスワイプしてください
Fill in the blanks to create a struct called Car which has the following attributes:
nameof typestring;yearof typeint;mileageof 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."); } }
- Use the
publickeyword before the fields in the structure definition. - Use the
variableName.fieldNamesyntax for accessing the fields and their data.
index.cs
12345678910111213141516171819202122using System; struct Car { public string name; public int year; public float mileage; } class Program { static void Main(string[] args) { Car car; car.year = 2023; car.name = "Hilux"; car.mileage = 2000; Console.WriteLine($"The {car.name} has a mileage of {car.mileage} miles."); } }
すべて明確でしたか?
フィードバックありがとうございます!
セクション 2. 章 3
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください
セクション 2. 章 3