gpt4 book ai didi

java - 无法在 if 语句中向变量添加数字

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

我只是想让用户输入一个数字,程序会在这个数字上加上 0.25。但它说“+”是一个无效的运算符,这不可能是真的。或者我的代码中是否有一些特殊的规则?

//User Interface etc. is made
double Num1 = 5.25
double Num2 = 6.5
if (Num1 <= 0) {
Num2--;
Num1 + 0.25; //here is the error according to eclipse
}

Num1 和 Num2 来自 JtextField,我希望这个问题不太愚蠢,但我只是不明白为什么我不能在此处添加它。

最佳答案

我希望你愿意这样做。您添加 Num1+0.25 但不存储结果。

//User Interface etc. is made
double Num1 = 5.25
double Num2 = 6.5
if (Num1 <= 0) {
Num2--;
Num1=Num1 + 0.25; //here is the error according to eclipse
}

关于java - 无法在 if 语句中向变量添加数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50955411/

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