变量错误,无法转换为布尔错误

时间:2012-11-18 19:09:51

标签: java

所以我发现错误正在发生,但我不明白他们为什么会这样。这对我没有意义。

    for(int i = 1; i < Array.getLength(purchases);i++)
    {
        System.out.print("\n");
        System.out.print("Enter a price for item #"+i+": $");
        double temp3=input.nextDouble();
        double price=temp3;

            if(price=>0) **<==it wont let me have both = and >**
            {
                total=total+price;
                double temp1=total*100;
                int temp2=(int)temp1;
                total=temp2/100.0;
        System.out.print("That was $"+price+". Your total is $"+total);
            }
       else(price==0) **<=="The left-hand side of an assignment must be a variable"**
            {

            }
    }

3 个答案:

答案 0 :(得分:2)

if(price=>0)

这应该是: -

if(price >= 0)

请注意>=的顺序。 >排在第一位。

另外: - else(price==0)应为else,您无需在else中添加条件。

答案 1 :(得分:1)

大于或等于排序错误。

if(price=>0)

应该是

if(price>=0)

正确的排序是使用>=

 else(price==0)

应该是

 else if(price<0) //should be less than zero , because you are already checking if price is >=0 in your if.

其他 足够

嵌套if-else语法

  if(somecond){

   }
   else if(somecond){
    }
   else{ // you don't mention any condition for else, as it would be the last condition.

    }

答案 2 :(得分:0)

在java中,“大于或等于”是&gt; =。 另外,对于第二个错误,你应该有“else if”,而不仅仅是“else”。