当答案正确时,需要结束while循环

时间:2017-02-14 15:43:36

标签: java while-loop

我已经让这个程序在输入数字的地方工作,如果它是大的(超过100)它要求他们重新输入一个数字。我的问题是,当他们输入一个正确的数字时,它表示数字大到输入一个新数字。请帮忙:

import java.util.Scanner;
public class roomNumbers {

    public static void main(String[] args) {
        Scanner scnr =  new Scanner (System.in);
        int num = 0;

        System.out.print("Input a number between 1 - 75 please");
        num = scnr.nextInt();

        while (num < 100){
            System.out.print(num);
            System.out.print(" ");
            num = num + 2;

        }


    System.out.println("Number is to high, please choose again");

main(args);


    }

}

请输入1到75之间的数字 200 数量很高,请再次选择 请输入1到75之间的数字 55 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99数字为高,请再次选择 输入1到75之间的数字

一旦输出正确答案,我该如何让它停止。

0 个答案:

没有答案