C語言中的循環語句可以使用不同的方式實現,包括for循環、while循環和do-while循環。下面以這三種常見的循環方式介紹如何使用循環函數。
for (初始化表達式; 循環條件; 更新表達式) {
循環體語句;
}
示例:
#include <stdio.h>
int main() {
int i;
for (i = 0; i < 10; i++) {
printf("%d\n", i);
}
return 0;
}
輸出結果:
0
1
2
3
4
5
6
7
8
9
while (循環條件) {
循環體語句;
}
示例:
#include <stdio.h>
int main() {
int i = 0;
while (i < 10) {
printf("%d\n", i);
i++;
}
return 0;
}
輸出結果與上面的示例相同。
do {
循環體語句;
} while (循環條件);
示例:
#include <stdio.h>
int main() {
int i = 0;
do {
printf("%d\n", i);
i++;
} while (i < 10);
return 0;
}
輸出結果與前兩個示例相同。
以上是C語言中常見的循環語句的用法,根據實際需求選擇合適的循環方式。