vicual c++的相关问题
我用vicual c++编写for(int i = 0; i<=5; )不能编译啊?回复 3楼 未来大仙
我的代码是这样咯#include <stdio,h>
int main()
{
for (int count = 0;count<=5;count++)
{
printf("hahaha\n");
}
return 0;
}
然后,编译的时候报错
这样写编译就不报错
int count = 0;
for (;count<=5;count++)