- 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("x=y這樣都不會?");
- }
- }
複製代碼 |