c语言while循环改为for循环
时间: 2023-10-22 12:20:39 浏览: 143
while循环:
```
int i = 0;
while (i < 10) {
printf("%d\n", i);
i++;
}
```
for循环:
```
for (int i = 0; i < 10; i++) {
printf("%d\n", i);
}
```
相关问题
c语言while循环改为dowhile循环
将c语言while循环:
```c
int i = 0;
while (i < 10) {
printf("%d ", i);
i++;
}
```
改为dowhile循环:
```c
int i = 0;
do {
printf("%d ", i);
i++;
} while (i < 10);
```
c语言for循环改成while
将for循环改为while循环的一般方法是先将for循环的初始化语句放在while循环之前,然后将循环条件放在while循环的判断部分,最后将for循环的迭代部分放在while循环的循环体中。
例如,将以下for循环改为while循环:
```
for (int i = 0; i < n; i++) {
// 循环体语句
}
```
改为:
```
int i = 0;
while (i < n) {
// 循环体语句
i++;
}
```
阅读全文