好。所以。任务:创建一个这样的表:
A table of celsius, fahrenheit, kelvin and réaumur, where celsius goes from 0-20
该表基于摄氏度,应从0-20表示,然后相应地转换为其他三个系统。转换将以单独的方法完成。
我只是不知道该怎么做。我的脑子一片空白。除了我已经完成的方法。到目前为止,这是我的计划,但是,嘿,它并不多:
public static void main(String[] args) {
int[] celsius = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20);
System.out.println("Celsius" + "\t" + "Kelvin" + "\t" + "Fahrenheit" + "\t" +
"Réaumur");
System.out.println("------------------------------------------");
}
public static double getKelvin(double cel) {
double kelvin;
kelvin = cel + 273.15;
return (kelvin);
}
public static double getFahr(double cel) {
double fahr1;
fahr1 = (grader * 9) / 5 + 32;
return (fahr1);
}
public static double rea(double cel) {
double rea1;
rea1 = (grader * 0.8);
return (rea1);
}
}
我该怎么办!?我觉得很蠢,但我的脑袋完全空白...... 百万感谢你提前。
答案 0 :(得分:-1)
像
这样的东西Communication
小数点分隔符取决于您的系统本地化设置。
此致