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

TOP

返回列表