Java帮助重启程序
import java.util.Scanner ;
public class Mal {
public static void main (String []args) {
System.out.println("Welcome") ;
Scanner myinput=new Scanner (System.in) ;
System.out.println("Make your choice. \n 1.Check a card number \n 2.Quit.");
int choise=myinput.nextInt();
switch(choise) {
case 1:System.out.println("Enter your credit card number: ");
break;
case 2:System.out.println("Are you sure?") ;
String answer=myinput.next();
if(answer.equals("yes")){
System.out.println("Byee :)") ;
System.exit(0);
}
break;
default: System.out.println("Idiot!") ;
break;
}
}
}
我想要一个程序,如果用户输入与“是”不同的内容,该程序会重新启动
import java.util.Scanner ;
public class Mal {
public static void main (String []args) {
System.out.println("Welcome") ;
Scanner myinput=new Scanner (System.in) ;
System.out.println("Make your choice. \n 1.Check a card number \n 2.Quit.");
int choise=myinput.nextInt();
switch(choise) {
case 1:System.out.println("Enter your credit card number: ");
break;
case 2:System.out.println("Are you sure?") ;
String answer=myinput.next();
if(answer.equals("yes")){
System.out.println("Byee :)") ;
System.exit(0);
}
break;
default: System.out.println("Idiot!") ;
break;
}
}
}
i want a program which starts again if user types something different than "yes"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以
使用这样的标志
和一段时间来封闭您的选项
,并
在用户想要退出时设置
quit = true
。编辑:
类似这样的东西
Here's what you can do
have a flag like this
and a while enclosing your options
and
set
quit = true
if the user wants to quit.EDIT:
Something like this