- import java.io.Console;
- public class Ch08
- {
- public static void main(String args[])
- {
- int x, y;
- Console c=System.console();
- System.out.print("請輸入x: ");
- x=Integer.parseInt(c.readLine());
- System.out.print("請輸入y: ");
- y=Integer.parseInt(c.readLine());
- if(x>y)
- {
- System.out.print("x大於y!");
- }
- else if(x==y)
- {
- System.out.print("x等於y!");
- }
- else
- {
- System.out.print("x小於y!");
- }
- }
- }
複製代碼 |