我的代码如下:
#include <stdio.h>
main() {
int a[10] = {2, 3, 4, 5, 0, 3, 4, 1, 6, 7};
int i = 0;
int c;
while ( ((c = a[i]) != 1) || (c != 0) )
{
printf("%d\t", a[i]);
i++;
}
printf("\n");
}
我的输出是:
2 3 4 5 0 3 4 1 6 7 0 0 0 0 2146884437 32562 -1440495800 32764 -1440495800 32764 0 1 4195741 0 0 0728816842 -394539994 4195504 0 -1440495808 32764 0 0 0 0 -1483678518 394434657 -1653941046 371143627 0 0 0 0 0 0 4195920 0 -1440495800 32764 1 0 0 0 0 0 4195504 0 -1440495808 32764 0 0 4195545 0 -1440495816 32764 28 0 1 0 -1440487321 32764 0 0 -1440487313 32764 -1440487270 32764 -1440487045 32764 -1440487002 32764 -1440486991 32764 -1440486965 32764 -1440486943 32764 -1440486925 32764-1440486899 32764 -1440486857 32764 -1440486833 32764 -1440486642 32764 -1440486627 32764 -1440486754 32764 -1440486642 32764 -1440486627 32764 -1440486616 32764 -1440486573 32764 -1440486548 32764 -1440486395 32764 -1440486374 32764-1440486359 1440486330 32764 -1440486303 ....
直到段故障。
输出应打印出
a
的值,直到达到第一个0
,这是怎么回事? 最佳答案
您的while陈述while ( ((c = a[i]) != 1) || (c != 0) )
将会永远循环,因为如果为1则不能为零,如果为零则不能为1
我相信您可以通过用“和” ||
条件运算符替换“或” &&
来实现。
只要c
等于1或零,这将使循环停止。
循环将变成
int i = 0;
int c;
while ( ((c = a[i]) != 1) && (c != 0) )
{ printf("%d\t", a[i]);
i++;
}
关于c - 简单的while循环错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33292826/