gpt4 book ai didi

c - 如何在while循环中编写if条件来终止它

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

如何在while循环中编写if条件?

我的第一个方法是

#define if(x) 0

main{

while(if(1)) /// is it right
{
}
}

如果没有宏,我会收到如下错误:'if' 之前的预期表达式

最佳答案

While ( x == true ) {

//some code

if ([insert exist condition here]){
x = false;
);

}

注意存在条件可以以某种方式满足,否则你的代码将永远运行

关于c - 如何在while循环中编写if条件来终止它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43002389/

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