int main() {
int i,j,count;
count=0;
for(i=0; i<5; i++);
{
for(j=0;j<5;j++);
{
count++;
}
}
printf("%d",count);
return 0;
}
Run Code Online (Sandbox Code Playgroud)
如果我们放在这里;在 for() 之后 for 循环不运行任何东西。那么程序执行完后count是怎么变成1的呢?