1.格式
for(一般来说是定义性语句,简称初始化表达式;判断条件;曾量语句)
{
循环体;//循环体 后面 不再需要i++,j++这些语句
}
2.while循环和for循环之间的转换
1>用for循环打印10次hello world
int main()
{
for (int i = 0; i<10; i++) {
printf("hello world\n");
}
return 0;]]
}
2>while循环打印10次hello world
int main()
{
int i = 0;
while (i < 10) {
printf("hello world!\n");
i++;
}
return 0;
}
3>for循环转换成while循环
int main()
{
int i = 0
for (;i<10;) {
printf("hello world\n");
i++
}
return 0;
}
|
|