mark 45循环控制for语句的基本用法
1.
1>for循环和while循环对于循环控制变量,分别在什么时候销毁的?
//while 循环结束后 不销毁
#include <stdio.h>
int main()
{
int i = 0;
while (i<10) {
printf("%d次hello world!!\n",i);
i++;
}
//-------------下面i可以访问
printf("-----%d\n",i);
return 0 ;
}
//for循环在(xxx; ; ;)xxx位置定义的循环控制变量 会在for循环结束后销毁
#include <stdio.h>
int main()
{
for ( int i = 0;i<10; i++)
{
printf("%d次hello world!!\n",i);
}
//-------------下面i可以访问
printf("-----%d\n",i);
return 0 ;
} |
|