当前位置: 代码迷 >> J2SE >> 快点进来看看吧~回答得好小弟我就给你分
  详细解决方案

快点进来看看吧~回答得好小弟我就给你分

热度:125   发布时间:2016-04-24 12:12:10.0
快点进来看看吧~~~回答得好我就给你分
class robot{
String status;
double speed;
double temperature;

void checktemperature(){
if(temperature>600){
speed=5;
status="return home!";
}
}
void showattitude(){
System.out.println("status:"+status);
System.out.println("speed:"+speed);
System.out.println("temperature"+temperature);
}

public static void main(String[] args){
robot henry=new robot();
henry.status="exploring";
henry.speed=3.33;
henry.temperature=300.2;

henry.showattitude();
System.out.println("increase his temperature to 700.333");
henry.showattitude();
System.out.println("check his temperature");
henry.checktemperature();
henry.showattitude();
}
}为什么运行不了呢?

------解决方案--------------------
我运行的好好的
------解决方案--------------------
探讨
引用:

引用:

引用:

最近飞机打多了记忆力下降

你的小猴子图标怎么弄的呀~
  相关解决方案