C語言中的while
循環(huán)用于多次迭代程序或語句的一部分。
在while
循環(huán)中,條件在語句之前給出。 所以它與do while
循環(huán)有點不同,while
循環(huán)可能一次不會執(zhí)行語句,而do while
循環(huán)至少循環(huán)一次。
當C語言中使用while循環(huán)時
如果迭代次數(shù)不確定或未知,則應優(yōu)先考慮使用C語言while
循環(huán)。
C語言中while循環(huán)的語法
c語言中while
循環(huán)的語法如下:
while(condition){
//code to be executed
}
C語言中的while循環(huán)的流程圖,如下所示 -
下面來看看看打印表的一個while循環(huán)程序。創(chuàng)建一個源文件:while-example.c,其源代碼如下所示 -
#include <stdio.h>
#include <conio.h>
void main() {
int i = 1;
while (i <= 10) {
printf("%d \n", i);
i++;
}
}
執(zhí)行上面示例代碼,得到以下結(jié)果 -
1
2
3
4
5
6
7
8
9
10
使用C語言中的while循環(huán)打印給定數(shù)字表的程序
創(chuàng)建一個源文件:while-example2.c,其源代碼如下所示 -
#include <stdio.h>
void main() {
int i = 1, number = 0;
printf("Enter a number: ");
scanf("%d", &number);
while (i <= 10) {
printf("%d \n", (number*i));
i++;
}
}
編譯并執(zhí)行上面示例代碼,得到以下結(jié)果 -
Enter a number: 10
10
20
30
40
50
60
70
80
90
100
C語言中的無限循環(huán)
如果在while
循環(huán)中傳遞1
作為條件,則程序?qū)⑦\行無限次數(shù)。
while(1){
//statement
}