for循环
#include <stdio.h>int main()
{
int count;
for(count=0;count<10000;count=count+1)
{
printf("%d\n",count);
}
return 0;
}
为什么输出是
10
10
10
......
运行了下你的代码,这里正常打印:
没编译?输出的是上次的结果?? wp231957 发表于 2022-5-11 12:32
没编译?输出的是上次的结果??
应该是,我重新启动了vscode,就正常了
页:
[1]