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");
- }
- }
複製代碼 |