斗嫌/h2> – Code:



斗嫌/h2> – Code:

0 0


teach


On Github as535364 / teach

判斷

(如果明天下雨,就帶雨傘)

條件:明天下雨 敘述:帶雨傘

Code:

if(condition)
		statement;

數值判斷

判斷語法 數值判斷 語法 大於 > 小於 < 等於 == 大於等於 >= 小於等於 <= 且 && 或 ||

if then else

先來看份 Code 吧

if then else

if (condition)
	statement1;
else 
	statement2;

實例:

int main() {
    int year;
    scanf("%d", &year); // 輸入年份year
    if (year%400 == 0 ) {
        printf("%d是閏年\n", year);
	}
	else if( (year%4 == 0) && (year%100 != 0)){
		printf("%d是閏年\n", year);
	}
	else {
        printf("%d不是閏年\n", year);
    }
}

迴圈

迴圈?一種可以幫助我們重複而且大量性的計算 所以高階語言都有迴圈的機制

While

再來看份 Code 吧

While

while (condition)
	statement1;

至於 While 的複合敘述

就跟 if 一樣 回家自己想想囉

這邊直接上圖片,幫助了解while運作過程

判斷 (如果明天下雨,就帶雨傘) 條件:明天下雨 敘述:帶雨傘 Code: if(condition) statement;