gpt4 book ai didi

java - Java 中的逻辑和循环问题

转载 作者:行者123 更新时间:2023-12-01 18:11:57 27 4
gpt4 key购买 nike

我开始用 Java 编写小程序。我想练习 try-catch block ,但我什至没有到达那部分并卡在循环部分。我知道这是非常基本的循环问题,但我想我陷入了一个非常简单的逻辑问题。我从这个程序中需要的是,如果用户按 1,则跳转到 switch 语句并执行正确的情况。如果用户按下除 1 或 2 之外的任何数字,则返回到 MenuLoop 函数并再次执行它,直到按下正确的数字(1 或 2)。我使用While循环进行控制。这是代码。

import java.util.Scanner;

public class TryCatchExercise {

public static void MenuLoop() {
Scanner input = new Scanner(System.in);
int choice;

System.out.println("1. Check for Number 1");
System.out.println("2. Check for Number 2");
System.out.print("Please enter your choice... ");
choice = input.nextInt();
while (choice != 1 || choice != 2) {
System.out.println("Invalid entry, press 1 or 2");
MenuLoop();
} //Isn't it logical at this point for loop to be skipped and
// go to Switch if a user pressed 1 or 2.??

switch (choice) {
case 1:
System.out.println("Pressed 1");
break;
case 2:
System.out.println("Pressed 2");
break;
default:
System.out.println("Invalid number");
}
}

public static void main(String[] args) {
MenuLoop();

}

}
OUTPUT
1. Check for Number 1
2. Check for Number 2
Please enter your choice... 1
Invalid entry, press 1 or 2
1. Check for Number 1
2. Check for Number 2
Please enter your choice... 2
Invalid entry, press 1 or 2
1. Check for Number 1
2. Check for Number 2
Please enter your choice... 5
Invalid entry, press 1 or 2
1. Check for Number 1
2. Check for Number 2
Please enter your choice...

最佳答案

这里需要一个逻辑与(不是或)

while (choice != 1 || choice != 2) {
System.out.println("Invalid entry, press 1 or 2");
MenuLoop();
}

应该是这样的

while (choice != 1 && choice != 2) {
System.out.println("Invalid entry, press 1 or 2");
MenuLoop();
}

(使用 De Morgan's laws )例如

while (!(choice == 1 || choice == 2)) {
System.out.println("Invalid entry, press 1 or 2");
MenuLoop();
}

关于java - Java 中的逻辑和循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32303136/

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