运行 ❯
获取
你自己的 C#
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
using System; namespace MyApplication { class Car { string color; // field int maxSpeed; // field public void fullThrottle() // method { Console.WriteLine("The car is going as fast as it can!"); } static void Main(string[] args) { Car myObj = new Car(); myObj.fullThrottle(); // Call the method } } }
汽车正在尽可能快地行驶!