gpt4 book ai didi

java - 初级 Java if else 范围语句

转载 作者:行者123 更新时间:2023-12-01 10:43:58 25 4
gpt4 key购买 nike

我正在尝试根据包裹重量查找总运费。

为什么当我输入超过 2.5 的值时,它会显示为 2 个答案?

例如:

Please enter parcelweight
3
The charge is 8.55
The charge is 7.3500000000000005

对应的代码是:

    if(parcelweight  < 2.5)
{
System.out.println("The charge is" +parcelweight*3.5);

}
else {

if((parcelweight >=2.5 && parcelweight <=5));
{
System.out.println("The charge is" +parcelweight*2.85);
}

if(parcelweight > 5);
{
System.out.println("The charge is" +parcelweight*2.45);
}
}

最佳答案

在 if(....); 中删除 ; 后,您应该添加一个 else,如下所示:

   else if(parcelweight > 5)

关于java - 初级 Java if else 范围语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34306618/

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