C# 语法
C# 注释
C# 变量
C# 数据类型
C# 用户输入
C# 运算符
C# 数学
C# 字符串
C# 布尔值
C# 如果...否则
C# 开关
C# 循环
C# 数组
C# 方法
C# 类/对象
C# 异常

Menu
×
×
正确

练习:

从对象中调用fullThrottle()方法:

class Car { public void fullThrottle() { Console.WriteLine("The car is going as fast as it can!"); } static void Main(string[] args) { Car myObj = new Car(); myObj.fullThrottle(); } }

不正确

点击 此处 重试

正确

下一题 ❯
class Car 
{
  public void fullThrottle()
  {
    Console.WriteLine("The car is going as fast as it can!"); 
  }

  static void Main(string[] args)
  {
    Car myObj = new Car();
    .
  }
}







×

重置分数?