gpt4 book ai didi

c - 初学C循环函数

转载 作者:太空宇宙 更新时间:2023-11-04 05:05:06 26 4
gpt4 key购买 nike

我刚从 PHP 开始接触 C。当从另一个函数中调用 printf() 函数时,我遇到了问题:

#include <stdio.h>

void printloop (int valx) {
int x;
for (x = valx; x < 5; x++) {
printf("Value of x is: %d\n", x);
}
}

int main() {
printloop(5);
return 0;
}

程序将编译并运行,但屏幕上没有输出。

最佳答案

当您调用 printloop函数 5 for 循环本质上变成了

for (x = 5; x < 5; x++) {
//...
}

x < 5永远不会是真的。


我想你的意思是类似

for (x = 0; x < valx; x++) {
//...
}

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

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