gpt4 book ai didi

java - 变量错误且无法转换为 boolean 错误

转载 作者:行者123 更新时间:2023-12-02 00:08:03 25 4
gpt4 key购买 nike

所以我用粗体显示了正在发生的错误,但我不明白为什么会发生这些错误。这对我来说没有意义。

    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"**
{

}
}

最佳答案

if(price=>0)

这应该是:-

if(price >= 0)

注意 > 的顺序和=>首先。

还有:- else(price==0)应该是else ,您不需要在 else 中添加条件.

关于java - 变量错误且无法转换为 boolean 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13443550/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com