我有这段代码,根据这个页面, 下面的输出应该正确地给我,98.24,但这给了我 68.8,我在这里缺少什么?
public class Qn1
{
public static void main(String[] args)
{
double cel = 36.8;
double fah = ((9 / 5 )* cel) + 32;
System.out.println(cel + "deg C =" + fah +" deg F");
}
}