继续努力

继续努力。

附:

[code]class NewVolcanoRobot {
String status;
int speed;
float temperature;

void checkTemperature() {
if (temperature > 660) {
status = "返回基地";
speed = 5;
}
}

void showAttributes() {
System.out.println("状态: " + status);
System.out.println("速度: " + speed);
System.out.println("温度: " + temperature);
}

public static void main(String[] arguments) {
NewVolcanoRobot dante = new NewVolcanoRobot(); //将VolcanoRobot类作为模板创建新VolcanoRobot对象。对象名称是dante。
dante.status = "工作中……";
dante.speed = 2;
dante.temperature = 510;

System.out.println("\n机器人1号:");
dante.showAttributes(); //显示初始状态
System.out.println("改变速度为 3.");
dante.speed = 3;
dante.showAttributes(); //显示改变速度后的状态
System.out.println("改变温度为 670.");
dante.temperature = 670;
dante.showAttributes(); //显示改变温度后的状态
System.out.println("检查温度.");
dante.checkTemperature();
dante.showAttributes(); //显示检查温度后的状态

NewVolcanoRobot virgil = new NewVolcanoRobot(); //新建一个机器人virgil
System.out.println("\n机器人2号:");
virgil.status = "工作中……";
virgil.speed = 4;
virgil.temperature = 535;
virgil.showAttributes(); //显示机器人2号的状态
}
}

NewVolcanoRobot.java

[/code]

跑了十圈,洗完澡接着学。

[code]class Weather {
public static void main(String[] arguments) {
float fah = 86;
System.out.println(fah + " 华氏温度是 ...");
// 转换华氏温度TO摄氏温度
// 开始减去32
fah = fah - 32;
// 结果再除以9
fah = fah / 9;
// 最后乘以5
fah = fah * 5;
System.out.println(fah + " 摄氏温度\n");

float cel = 33;
System.out.println(cel + " 摄氏温度是 ...");
// 转换摄氏温度TO华氏温度
// 开始乘以9
cel = cel * 9;
// 然后除以5
cel = cel / 5;
//最后加上32
cel = cel + 32;
System.out.println(cel + " 华氏温度");
}
}

Weather.java
class touzi {
public static void main(String[] arguments) {
float money = 14000;
System.out.println("原有资金:" + money+ "美元");
money = money + (money * .4F);
System.out.println("第一年:" + money+ "美元");
money = money - 1500;
System.out.println("第二年:" + money+ "美元");
money = money + (money * .12F);
System.out.println("第三年:" + money+ "美元");
if ( money >= 14000 )
System.out.println("经分析值得投资!");
else
System.out.println("经分析不值得投资");
}
}

touzi.java
class yunsuan {
public static void main(String[] arguments) {
float a = 27 , b = 4 , c , d;
System.out.println("A:" + a + "\tB:" + b);
c=a/b;
d=a%b;
System.out.println("\n相除\t取余");
System.out.println(c + "\t" + d);

}
}

yunsuan.java [/code]

突然觉得很后悔,如果什么事情都没发生的话,每天就这么学学编程,好好读书,积点慢慢提上去,然后顺利毕业顺利找工作……

不过人生没有如果。

有的只是教学楼里醒目的处分通告。

继续努力:等您坐沙发呢!

发表评论

表情
还能输入210个字