获取java中用户的输入数量

时间:2016-05-02 14:04:27

标签: java

我是Java的新手。我希望这个问题听起来足够清醒。 比方说,例如,用户必须每行输入3个数字,直到他输入0 0 0(我用do while循环管理)。 现在,我想知道用户输入的输入总数,直到0 0 0.如何使用java获得该输入? 这是我的一些代码:

 int a,b, c;
do{ a= input.nextInt();
    b= input.nextInt();
    c= input.nextInt();
    }
    while( a !=0 && b !=0 && c !=0);

2 个答案:

答案 0 :(得分:0)

 int a,b, c;
int  count=0;
do{ a= input.nextInt();
    b= input.nextInt();
    c= input.nextInt();
     count++;
    }
    while( a !=0 && b !=0 && c !=0);

总数将为计数

答案 1 :(得分:0)

算一下,就像

一样
    int count;
     int a,b, c;
    do{ a= input.nextInt();
        b= input.nextInt();
        c= input.nextInt();
        }
      count + = 1;
    while( a !=0 && b !=0 && c !=0);