回 帖 发 新 帖 刷新版面

主题:这个机器人错在那了..

class Volcanorobot{
  String status;
  int speed;
  float temperature;
  
  void checkTemperature(){
     if(temperature>600){
       status="returning home";
       speed=5;
       }
      }
  
  void showAttributes(){
      System.out.println("status: "+status);
      System.out.println("speed: "+speed);
      System.out.println("Temperature: "+temperature);
   }


public static void main(string[] arguments){
      Volcanorobot dante=new Volcanorobot();
      dante.status="exploring";
      dante.speed=2;
      dante.temperature=510;

      dante.showAttributes();
      System.out.println("Increasing speed to 3.");
      dante.speed=3;
      dante.showAttributes();
      System.out.println("Changing temperature to 670.");
      dante.temperature=670;
      dante.showAttributes();
      System.out.println("Checking the temperature.");
      dante.checkTemperature();
      dante.showAttributes();
   }
 }


本人刚学JACA,这程序编了二天时间了,还是没通过。大家帮忙找找吧

回复列表 (共1个回复)

沙发

public static void main(string[] arguments){
要改成:public static void main(String[] arguments){

终于知道了

我来回复

您尚未登录,请登录后再回复。点此登录或注册