根據判別條件的不同,執行不同的語句。
public
class
demo
system.out.
println
("a:"
+a);
}}
結果:
a:
2
public
class
demo
else
}}
結果:
是奇數
備註:這裡提一下三元運算子xx ? a : b,效果可能和if … else差不多,通常用作對某個變數進行賦值。
public
class
demo
}
c:
2
public
class
demo
else
if(score >80)
else
if(score >70)
else
if(score >60)
else
}}
結果:
中
實際中也常用switch條件語句來實現條件選擇,這裡的條件是某個具體變數的值而不是邏輯表示式。
public
class
demo
}}
結果:
星期五
備註:當多個case條件後面的執行語句是一樣的,則該執行語句只需要書寫一次即可。以上面的例子為例:
public
class
demo
}}
結果
休息日
選擇結構語句
ifelse ifelse語句 if 判斷語句 else if 判斷語句 else 您的輸入有誤,請注意體重為kg,身高為m 您的bmi值為 25.351541373715524 您的體重過輕需要加強營養 您的bmi值為 25.351541373715524 您的體重十分標準 4if else語句中...
選擇結構語句
int和char的轉換 int a a char b 65 system.out.println a 97 system.out.println b a system.out.println a b 162 字串拼接區別 system.out.println hello 10 20 hello102...
選擇結構語句IF
選擇結構語句if if語句通過對條件表示式的判斷,來決定程式的執行流程。if 條件表示式 then語句1 if 條件表示式 then語句1else 語句2 if 條件表示式1 then語句1 elseif 條件表示式2 then語句2 elseif 條件表示式n then語句3 else語句n 例1...