gpt4 book ai didi

c - 简单的 while 循环错误

转载 作者:行者123 更新时间:2023-11-30 17:09:26 25 4
gpt4 key购买 nike

我的代码如下:

#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 -1440486822 32764 -1440486792 32764 -1440486754 32764 -1440486642 32764 -1440486627 32764 -1440486616 32764 -1440486573 32764 -1440486548 32764 -1440486395 32764 -1440486374 32764 -1440486359 32764-1440486330 32764 -1440486303 ....

直到出现段错误。

输出应该打印出a的值,直到遇到第一个0,出了什么问题?

最佳答案

你的while语句
while (((c = a[i]) != 1) || (c != 0) )
将永远继续循环,因为如果它是 1,则不能为零,如果它是零,则不能是 1
我相信您想要做的事情可以通过用“and”&& 条件运算符替换“or”|| 来完成。
这将使循环在 c 等于 1 或 0 时停止。
循环将变成

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com