Java帮助重启程序

发布于 2024-10-28 12:14:15 字数 839 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜灵血窟げ 2024-11-04 12:14:15

您可以

使用这样的标志

boolean quit = false;

和一段时间来封闭您的选项

while(!quit){
...
...
}

,并

在用户想要退出时设置quit = true

编辑:

类似这样的东西

public static void main(String a[]) {
    System.out.println("Welcome");
    Scanner myinput = new Scanner(System.in);
    boolean quit = false;
    while (!quit) {
        System.out
                .println("Make your choise. \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 :)");
                quit= true;
            }
            break;
        default:
            System.out.println("Idiot!");
            break;
        }
    }

Here's what you can do

have a flag like this

boolean quit = false;

and a while enclosing your options

while(!quit){
...
...
}

and

set quit = true if the user wants to quit.

EDIT:

Something like this

public static void main(String a[]) {
    System.out.println("Welcome");
    Scanner myinput = new Scanner(System.in);
    boolean quit = false;
    while (!quit) {
        System.out
                .println("Make your choise. \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 :)");
                quit= true;
            }
            break;
        default:
            System.out.println("Idiot!");
            break;
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文