返回列表 發帖
  1. import java.lang.System;
  2. import java.io.Console;
  3. public class Ch12
  4. {
  5.     public static void main(String args[])
  6.     {
  7.         Console c=System.console();
  8.         int a=Integer.parseInt(c.readLine("請輸入a:"));
  9.         int b=Integer.parseInt(c.readLine("請輸入b:"));
  10.         if(a<b)
  11.         {
  12.            System.out.println("b比較大!");
  13.         }else if(a>b)
  14.         {
  15.            System.out.println("a比較大!");
  16.         }else
  17.         {
  18.            System.out.println("兩數相等!");
  19.         }
  20.     }
  21. }
複製代碼

TOP

返回列表