gpt4 book ai didi

C 循环 while - 初学者

转载 作者:行者123 更新时间:2023-11-30 21:45:46 25 4
gpt4 key购买 nike

我在论坛上的第一个问题。我不确定为什么代码的输出是“hi”,而我认为它应该为空。我可能在这里严重错过了一些东西。感谢帮助。

#include <stdio.h>

int main(void)
{
int i = 0;
while (i == 0)
{
printf("hi\n");
i++;
}
}

最佳答案

您的 while 循环将运行您所包含的内容,直到停止条件为 false。您将 int i = 0 作为起始值,并且 while 循环条件为 while (i == 0) 来打印“hi”。由于 i = 0,您的条件一次为 true,并且会在 i 递增之前打印一次“hi”,并在下一次传递时变为 false。

关于C 循环 while - 初学者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34694846/

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