返回列表 發帖
  1. import java.io.Console;
  2. public class Ch03
  3. {
  4.      public static void main(String args[])
  5.      {
  6.            int a;
  7.            float b;
  8.            Console c=System.console();
  9.            System.out.print("輸入一整數: ");
  10.            a=Integer.parseInt(c.readLine());
  11.            System.out.println("剛輸入: "+a);
  12.            System.out.print("輸入一浮點數: ");
  13.            b=Float.parseFloat(c.readLine());
  14.            System.out.println("剛輸入: "+b);
  15.      }
  16. }
複製代碼
Allen

TOP

返回列表