C 程式設計入門 選擇分支語句 4

2021-09-30 14:46:10 字數 1836 閱讀 3570

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace if分支語句

"說,你這次考試得的分數");

//int score = int.parse(console.readline());

//if (score == 100)

//"**************");

#endregion

#region

//1.判斷乙個數是都是偶數,如果是偶數那麼就加1並列印

//判斷乙個數是否為偶數 就是判斷該數能否被2整除 被2整除就意味著餘數為0

"輸入乙個整數");

//int num = int.parse(console.readline());

////= 是賦值號 在計算機中 ==是等號

////if 後面的括號後沒有分號 ;

//// 如果加了分號 那麼就會在任何情況下都要執行大括號裡面的**

//if (num % 2 == 0)

////if (num<0)

//#endregion

#region

//報3 如果3的倍數 那麼就輸出"過" 否則輸出該數

"請輸入乙個數字");

//int num2 = int.parse(console.readline());

//if (num2%3 == 0)

////else

//#endregion

#region

//判斷乙個年份是否為閏年

//如果年份能被4整除並且不能被100整除 或者能被400整除的都是閏年

//滿足閏年的條件:

// 能被4整除 並且不能被100整除

//能被400整除

" 請輸入年份:");

//int year = int.parse(console.readline());

//if ((year % 4 == 0 && year % 100 !=0)|| (year % 400 ==0))

////else

//#endregion

// num1 > num2 num1 == num2 num1console.writeline("請輸入第乙個數字");

int fisrtnumber = int.parse(console.readline());

console.writeline("請輸入第二個數字");

int secondnumber = int.parse(console.readline());

if (fisrtnumber"第乙個數小於第二個數");

}else

if (fisrtnumber == secondnumber)

else}}

}

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace

switch講解

console.writeline("輸入季節");

string season = console.readline();

switch (season)}}

}

C 分支語句

using system else switch num break case 1 break default break 首先看到 int num 建立了乙個變數用來儲存輸入的值 跟著 使用 if 判斷 輸入的值是否是 int 型 如果是 int 型那麼就輸出輸入的值 否則就輸出 input is...

c 分支語句

i f ch a a grade else if ch b b grade else if ch c c grade else if ch d d grade else f grade switch ch switch語句 有case 且以default結尾,加 break語句表示否定,如果 ch ...

分支語句(c )

分支語句 一.if語句 格式一 if expression statement 例 if x y cout 格式二 if expression statement1 else statement2 例 if x y max x else max y 格式三 if expr1 statement1 e...