91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言中如何使用do-while語句

發布時間:2021-07-02 16:41:26 來源:億速云 閱讀:211 作者:Leah 欄目:編程語言

這篇文章給大家介紹C語言中如何使用do-while語句,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

while循環和for循環都是入口條件循環,即在循環的每次迭代之前檢查測試條件,所以有可能根本不執行循環體中的內容。C語言還有出口條件循環(exit-condition  loop),即在循環的每次迭代之后檢查測試條件,這保證了至少執行循環體中的內容一次。這種循環被稱為do while循環。

看下面的例子:

#include <stdio.h> int main(void) {     const int secret_code = 13;     int code_entered;      do     {         printf("To enter the triskaidekaphobia therapy club,\n");         printf("please enter the secret code number: ");         scanf("%d", &code_entered);     } while (code_entered != secret_code);     printf("Congratulations! You are cured!\n");      return 0; }

運行結果:

  • To enter the triskaidekaphobia therapy club,

  • please enter the secret code number: 12

  • To enter the triskaidekaphobia therapy club,

  • please enter the secret code number: 14

  • To enter the triskaidekaphobia therapy club,

  • please enter the secret code number: 13

  • Congratulations! You are cured!

使用while循環也能寫出等價的程序,但是長一些,如程序清單6.16所示。

#include <stdio.h> int main(void) {     const int secret_code = 13;     int code_entered;      printf("To enter the triskaidekaphobia therapy club,\n");     printf("please enter the secret code number: ");     scanf("%d", &code_entered);     while (code_entered != secret_code)     {         printf("To enter the triskaidekaphobia therapy club,\n");         printf("please enter the secret code number: ");         scanf("%d", &code_entered);     }     printf("Congratulations! You are cured!\n");      return 0; }

下面是do while循環的通用形式:

do     statement while ( expression );

statement可以是一條簡單語句或復合語句。注意,do-while循環以分號結尾。

C語言中如何使用do-while語句
Structure of a =do while= loop=

do-while循環在執行完循環體后才執行測試條件,所以至少執行循環體一次;而for循環或while循環都是在執行循環體之前先執行測試條件。do  while循環適用于那些至少要迭代一次的循環。例如,下面是一個包含do while循環的密碼程序偽代碼:

do {     prompt for password     read user input } while (input not equal to password);

避免使用這種形式的do-while結構:

do {    ask user if he or she wants to continue    some clever stuff } while (answer is yes);

這樣的結構導致用戶在回答“no”之后,仍然執行“其他行為”部分,因為測試條件執行晚了。

關于C語言中如何使用do-while語句就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普兰县| 青神县| 晋江市| 黑河市| 社旗县| 东山县| 鄂伦春自治旗| 当雄县| 沁阳市| 阜新市| 蓬安县| 观塘区| 尚志市| 广水市| 名山县| 仁寿县| 西贡区| 探索| 双城市| 南宁市| 绿春县| 扶风县| 紫云| 治多县| 那坡县| 怀宁县| 安徽省| 彩票| 金塔县| 新蔡县| 克什克腾旗| 探索| 北海市| 昌图县| 天全县| 阿巴嘎旗| 辽源市| 竹山县| 武穴市| 绵阳市| 疏勒县|