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

TOP

返回列表