当用户输入“n”次程序将停止时,我怎么能这样做呢?

时间:2017-03-22 17:03:34

标签: java

当用户输入一定次数的程序将终止时,我想这样做。如何使用我当前的代码实现这一目标?

num = input.nextInt();
System.out.println("Score for David");
ArrayList<Integer> al = new ArrayList<Integer>();
int count = 0;
int limit = num; 
while(true && count < num){
while(true){
   int check = input.nextInt();
}

3 个答案:

答案 0 :(得分:0)

while(count<10){
  stuff
  count++
}

或切换10输入他们输入的数字

答案 1 :(得分:0)

num = input.nextInt();
System.out.println("Score for David");
ArrayList<Integer> al = new ArrayList<Integer>();
int count = 0;
int limit = num; 
while(count < num){
    int check = input.nextInt();
    count++;
}

答案 2 :(得分:0)

首先,确保您的代码在将来正确缩进,以便社区更容易理解。

要进行循环(我假设您将使用while循环)在n次迭代后终止,请实现以下代码:

int x = 0;
while (x<n){
    x++;
    //this is where you add the rest of your code 
}