要執(zhí)行程序或代碼的一部分幾次或多次,我們可以使用C語言的do-while
循環(huán)。 在do
和while
之間給出的代碼將被執(zhí)行,直到條件(condition
)成為true
。
在do-while
循環(huán)中,語句在條件之前給出,所以語句或代碼將至少有一次執(zhí)行。換句話說,我們可以說do-while
循環(huán)執(zhí)行語句一次或多次。
如果你希望至少執(zhí)行一次代碼,使用do-while
循環(huán)是最好不過的選擇。
do-while循環(huán)語法
C語言do-while
循環(huán)的語法如下:
do{
//code to be executed
}while(condition);
do-while循環(huán)的流程圖
do-while循環(huán)的例子
下面給出了C語言的簡(jiǎn)單程序,while
循環(huán)來打印連續(xù)的數(shù)據(jù)。創(chuàng)建一個(gè)源文件:do-while-example.c,其代碼如下所示 -
#include <stdio.h>
#include <conio.h>
void main() {
int i = 1, number = 0;
printf("Enter a number: ");
scanf("%d", &number);
do {
printf("%d \n", (i));
i++;
} while (i <= number);
}
執(zhí)行上面代碼,得到以下結(jié)果 -
Enter a number: 12
1
2
3
4
5
6
7
8
9
10
11
12
請(qǐng)按任意鍵繼續(xù). . .
使用do while循環(huán)打印給定數(shù)字表的程序
實(shí)現(xiàn)一個(gè)輸入數(shù)的倍數(shù)打印,創(chuàng)建一個(gè)源文件:do-while-print-table.c,參考以下代碼的實(shí)現(xiàn) -
#include <stdio.h>
#include <conio.h>
void main() {
int i = 1, number = 0;
printf("Enter a number: ");
scanf("%d", &number);
do {
printf("%d \n", (number*i));
i++;
} while (i <= 10);
}
執(zhí)行上面示例代碼,得到以下結(jié)果 -
Enter a number: 8
8
16
24
32
40
48
56
64
72
80
無限do-while循環(huán)
如果在do while
循環(huán)中使用條件表達(dá)式的值1,則它將運(yùn)行無限次數(shù)。
do{
// 要執(zhí)行的語句
}while(1);