if...else if...else 判斷式 (一)
本帖最後由 tonyh 於 2014-11-1 17:45 編輯
運用 if...else if...else 判斷式, 比較 x 與 y 的大小關係.- import java.io.Console;
- public class ch10
- {
- 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("兩數相等!");
- }
- }
複製代碼 |