if...else if...else 判斷式 (一)
本帖最後由 鄭繼威 於 2023-5-3 21:01 編輯
多向判斷式語法
if (條件式一) {
程式區塊一;
}
else if(條件式二){
程式區塊二;
}
else if(條件式三){
程式區塊三;
}
.........
else{
else的程式區塊;
}
[補充]
if... 只能有一個(放在第一個)
else if... 可以很多個(放在中間)
else 只能有一個(放在最後一個)
運用 if...else if...else 判斷式, 比較 x 與 y 的大小關係.
- import java.io.Console;
- public class Ch09
- {
- public static void main(String args[])
- {
- Console c=System.console();
- int x,y;
- System.out.print("輸入x: ");
- x=Integer.parseInt(c.readLine());
- System.out.print("輸入y: ");
- y=Integer.parseInt(c.readLine());
- if(x>y)
- System.out.println("x>y");
- else if(x<y)
- System.out.println("x<y");
- else
- System.out.println("x=y");
- }
- }
複製代碼 |