小白求教Java, 程序已经编好了ଠ, 有0-4个选项, 不过如果我输5的话怎么能显示这不是有效选项。

2024-12-28 23:11:13
推荐回答(1个)
回答1:

choice = in.nextInt();
while(choice > 4 || choice < 0) {
System.out.println("请输入0-4");
choice = in.nexInt();
}