public static void main (String[] args) {
for (double f=0; f<=20;f++) {
System.out.println(f+":Degrees Fahrenheit converted to Celsius = "+ celsius(f));
}
}
public static double celsius (double fahrenheit) {
double cels=(fahrenheit-32)/(5/9);
return cels;
}
使用这个程序,我试图将华氏温度转换为摄氏温度,当我在运行程序时调用方法摄氏度到我的主程序时,摄氏温度的最终结果总是-无穷大。我究竟做错了什么?