- import java.lang.System;
- import java.io.Console;
- public class Ch12
- {
- public static void main(String args[])
- {
- Console c=System.console();
- int a=Integer.parseInt(c.readLine("請輸入a:"));
- int b=Integer.parseInt(c.readLine("請輸入b:"));
- if(a<b)
- {
- System.out.println("b比較大!");
- }else if(a>b)
- {
- System.out.println("a比較大!");
- }else
- {
- System.out.println("兩數相等!");
- }
- }
- }
複製代碼 |