我是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);
答案 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);