运行 ❯
获取自己的
C#
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
//filename: Car.cs using System; namespace MyApplication { class Car { string model; string color; int year; static void Main(string[] args) { Car Ford = new Car(); Ford.model = "Mustang"; Ford.color = "red"; Ford.year = 1969; Car Opel = new Car(); Opel.model = "Astra"; Opel.color = "white"; Opel.year = 2005; Console.WriteLine(Ford.model); Console.WriteLine(Opel.model); } } }
Mustang
Astra