gpt4 book ai didi

需要多个输入的 Java 扫描器

转载 作者:行者123 更新时间:2023-11-30 08:16:55 29 4
gpt4 key购买 nike

我想问一个关于我的代码的问题。

对于它的低效和困惑我深表歉意,我还在努力学习java。

    System.out.println("Please choose the number corresponding to the operation: ");
System.out.println("1 for add,2 for subtract,3 for multiply, 4 for divide, 5 for print, and 6 for exit: ");

if (sc.nextInt() == 5) {
System.out.println("Your first fraction is: " + num1 + "/" + denom1 + " or in decimal: " + ((float) num1 / denom1));
System.out.println("Your second fraction is: " + num2 + "/" + denom2 + " or in decimal: " + ((float) num2 / denom2));
} else if (sc.nextInt() == 3) {
System.out.println("Multiply: " + (num1 * num2) + "/" + (denom1 * denom2));

} else if (sc.nextInt() == 4) {
System.out.println("Divide: " + (num1 * denom2) + "/" + (denom1 * num1));

} else if (sc.nextInt() == 1) {
int d = denom1 * denom2;
int n1 = num1 * denom2;
int n2 = num2 * denom1;
System.out.println("Addition: " + (n1 + n2) + "/" + d);


} else if (sc.nextInt() == 2) {
int d = denom1 * denom2;
int n1 = num1 * denom2;
int n2 = num2 * denom1;
System.out.println("Subtract: " + (n1 - n2) + "/" + d);
}
else if (sc.nextInt() == 6 ) {
System.exit(0);
}
}
}

当我运行程序时,第一个 if 语句运行良好,因为我只需要输入一次数字 5。但是,正如您从第二个 else if 语句(即数字 3)中看到的那样需要两次输入,我必须在下一行出现之前输入两次。第三个 else if 语句是数字 4,在下一行出现之前需要 3 个输入,依此类推每个连续的 else if 语句。很抱歉,如果我没有正确解释这一点,有人知道为什么会这样吗?

最佳答案

将您的代码更改为:

int input = sc.nextInt();
sc.nextLine();
if (input == 5) {

和所有其他if (sc.nextInt()...)还有。

nextInt会消耗你的输入。所以如果你来到第二个 if输入已被第一个 if 使用.

nextLine必须消耗 <ENTER>在 int 值之后。

关于需要多个输入的 Java 扫描器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28084965/

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