4 程式流程結構

2021-10-18 19:35:59 字數 1308 閱讀 9233

c語言支援最基本的三種程式執行結構:

#include \

int*main*()

return0;

}

#include \

int*main*()

else

return0;

}

#include \

int*main*()

else

if(a \<

100)

else

if(a \<

1000

)else

return0;

}

#include \

int*main*()

else

*printf*

("c1 = %d\\n"

, c)

;a =1;

b =2

;c =

( a \> b ? a : b )

;*printf*

("c2 = %d\\n"

, c)

;return0;

}

#include \

int*main*()

return0;

}

#include \int *main*()

return 0;

}

#include \int *main*()

while (a \< 10);

return 0;

}

#include \int *main*()

*printf*("sum = %d\\n", sum);

return 0;

}

#include \int *main*()}}

*printf*("num = %d\\n", num);

return 0;

}

break語句

​ 在switch條件語句和迴圈語句中都可以使用break語句:

continue語句

​ 在迴圈語句中,如果希望立即終止本次迴圈,並執行下一次迴圈,此時就需要使用continue語句。

goto語句(無條件跳轉,盡量少用)

\#include \

int*main*()

四 程式流程結構

單行格式的if語句 if 條件 多行格式的if語句 if 條件 else 多條件的if語句 if 條件1 else if 條件2 else 巢狀if語句 if語句中寫入if語句 表示式1 表示式2 表示式3 若表示式1為真,執行表示式2,返回表示式2的結果 若表示式1位假,執行表示式3,返回表示式3...

C 程式流程結構

1 if 2 if.else.3 if.else if.else 例項 輸入乙個年份,判斷是否為閏年。閏年的年份必須滿足以下兩個條件之一 1 能被4整除,但不能被100整除的年份都是閏年。2 能被400整除的年份都是閏年 include using namespace std int main if...

C 程式流程結構 選擇結構

格式 if 條件 注意1 條件後面不能加分號 語法 if 條件 else 語法 if 條件1 else if 條件2 else include include using namespace std intmain elseif 700 score 650 else elseif 600 score...