- import java.io.Console;
- public class Ch666
- {
- 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");
- }
- }
- }
複製代碼 |