我希望用户输入几个不同的数字,然后分别测试每个数字。
此外,当输入的号码为0
时,我需要终止 ONLY 程序。
这是我的代码的开头:
int userInput;
printf("please enter some numbers: \n");
while ((scanf("%d", &userInput)) == 1)
{
...
}
在输入0
之前,如何继续获取用户的输入?
答案 0 :(得分:5)
while ((scanf("%d", &userInput) == 1) && (userInput != 0))
{
...
}
答案 1 :(得分:4)
while (scanf("%d", &userInput))
{
if(userInput == 0)
break;
/* do sth */
}