返回列表 發帖
  1. import java.io.Console;
  2. public class Ch02
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x;
  7.          float y;
  8.          Console c=System.console();
  9.          System.out.print("輸入整數");
  10.          x=Integer.parseInt(c.readLine());
  11.          System.out.println(x);
  12.     }
  13. }
複製代碼

TOP

返回列表