gpt4 book ai didi

c - C 程序错误(for 循环)

转载 作者:行者123 更新时间:2023-12-02 08:22:57 25 4
gpt4 key购买 nike

void checker(int width,int height){
int horizontal;
int repeat;
int i;
int j;
for(j=1; j<=height; j++){
while(horizontal<=width){
repeat = width/10;
if(horizontal%2){
for(i = 1; i <=repeat; i++)
printf("1");
}
else{
for(i = 1; i <=repeat; i++)
printf("0");
}
horizontal++;
}
printf("\n");
}
}

int main(){
checker(20,10);

return 0;
}

所以我正在通过 C 创建一个模式。从我的代码中可以看出,我几乎没有掌握 C 的窍门。当我编译和测试它时,模式不会以 0 和 1 的形式打印出来,而是它只打印\n。

我想知道为什么,我可能脑放屁了。

感谢您的宝贵时间,像我这样的新人非常感谢!

最佳答案

水平未正确初始化。现在你正在使用内存中留下的垃圾值。在尝试使用它之前给 horizo​​ntal 一个适当的值。

关于c - C 程序错误(for 循环),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35093909/

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