变量声明位置不同,结果不同
//2017年7月25日 15:48:12 输出从一到一百的数 #include <stdio.h>
int main (void)
{
int a;//相当与输入的数
for(a = 2; a <= 100; a++)
{
int c = 1;
int b;
for(b = 2; b < a; b++)
{
if(a % b == 0)
{
c = 0;
break;
}
}
if(c == 1)
{
printf("%d ", a);
}
}
return 0;
}
结果:2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
--------------------------------
Process exited after 0.2026 seconds with return value 0
请按任意键继续. . .
//2017年7月25日 15:48:12 输出从一到一百的数
#include <stdio.h>
int main (void)
{
int a;//相当与输入的数
int b;
int x;
int c = 1;
for(a = 2; a <= 100; a++)
{
for(b = 2; b < a; b++)
{
if(a % b == 0)
{
c = 0;
break;
}
}
if(c == 1)
{
printf("%d ", a);
}
}
return 0;
}
结果:2 3
--------------------------------
Process exited after 0.1654 seconds with return value 0
请按任意键继续. . .