返回列表 發帖
  1. import java.io.Console;
  2. public class Ch19
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x,y;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("請輸入x:"));
  9.         y=Integer.parseInt(c.readLine("請輸入y:"));
  10.         if(x>y)
  11.         {
  12.         System.out.print("x大於y!");
  13.         }
  14.         else if(x<y)
  15.         {
  16.         System.out.print("x小於y!");
  17.         }
  18.         else
  19.         {
  20.         System.out.print("x等於y!");
  21.         }
  22.     }
  23. }
複製代碼
張閎鈞OuO

TOP

返回列表