预期';'在java中的简单算术运算

时间:2017-08-14 22:51:30

标签: java

我不知道它到底是什么,但我认为这是我编写手术的方式

public class temperatureConversion
{
    public static void main( String [] args)
    {
        //freezing point constant
        final int FREEZING_POINT = 32;

        //fahrenheit input
        int fahrenheit = 75;

        //Fahrenheit to Celsius conversion
        double celsius =(fahrenheit- FREEZING_POINT)9.0/5.0;

错误:';'预期         double celsius =(fahrenheit-FREEZING_POINT)9.0 / 5.0;

标记指向9

1 个答案:

答案 0 :(得分:5)

你错过了一个算子,我假设你想要乘法(不暗示)。变化

double celsius =(fahrenheit- FREEZING_POINT)9.0/5.0;

double celsius =(fahrenheit- FREEZING_POINT)*9.0/5.0;