gpt4 book ai didi

java - "Invalid Response"再次选择怎么说? ( java 语)

转载 作者:行者123 更新时间:2023-12-01 09:32:22 26 4
gpt4 key购买 nike

我希望用户选择 i 或 c。如果他们不这样做我该怎么办?我怎样才能让他们回答这个问题?

最佳答案

您可以执行如下操作:

while(true) {
System.out.println("Please enter I or C or E for Exit");
String input = sc.nextLine();
if("I".equals(input)) {
//perform operation
break;
}
else if("C".equals(input)) {
//perform operation
break;
}
else if("E".equals(input)){
break;
}
System.out.println("Please Enter the correct option");
}

关于java - "Invalid Response"再次选择怎么说? ( java 语),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39302915/

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