好的,所以我是一个完全的编程新手,我刚开始用 Java 编码。我试图编写一个温度转换代码(摄氏度到华氏度),但由于某种原因它根本无法运行!请帮我找出这段代码中的错误(不管它多么愚蠢)。
这是代码:
package tempConvert;
import java.util.Scanner;
public class StartCode {
Scanner in = new Scanner(System. in );
public double tempInFarenheit;
public double tempInCelcius;
{
System.out.println("enter the temp in celcius");
tempInCelcius = in .nextDouble();
tempInFarenheit = (9 / 5) * (tempInCelcius + 32);
System.out.println(tempInFarenheit);
}
}