- import java.io.Console;
- public class ch05{
- public static void main(String args[]){
- String z;
- 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)
- z=">";
- else if(x<y)
- z="<";
- else
- z="=";
- System.out.println("x"+z+"y!");
- }
- }
複製代碼 |