使用 while 循环时,写入while(1)
与任何其他数字相比意味着什么?
在我的程序while(1)
中给了我相同的答案while(3)
int num1;
int loopcount;
while(1) {
printf("enter your positive number:");
scanf("%d",&num1);
if(num1>0) {
break;
}
}
使用 while 循环时,写入while(1)
与任何其他数字相比意味着什么?
在我的程序while(1)
中给了我相同的答案while(3)
int num1;
int loopcount;
while(1) {
printf("enter your positive number:");
scanf("%d",&num1);
if(num1>0) {
break;
}
}