Board logo

標題: 基本輸入 (二) [打印本頁]

作者: tonyh    時間: 2012-10-5 20:16     標題: 基本輸入 (二)

  1. import java.lang.*;    //此類別庫包含了所有最基本的工具, java在編譯時會自動引入, 因此也可忽略
  2. import java.io.Console; //引入名為 java.io.Console 的類別庫, 我們在抓取使用者自鍵盤輸入的資料時會用到
  3. public class ch05
  4. {
  5.    public static void main(String args[])
  6.    {
  7.         Console console=System.console();  //宣告名為console的物件
  8.         int x;
  9.         System.out.print("請輸入一整數: ");
  10.         x=Integer.parseInt(console.readLine());
  11.         System.out.println("您剛輸入的數為: "+x);
  12.    }
  13. }
複製代碼

作者: 晏有聰    時間: 2012-10-5 20:19

  1. import java.io.Console;
  2. public class ch05
  3. {
  4.    public static void main (String showdemo[])
  5.    {
  6.     Console console=System.console();
  7.     int x;
  8.     System.out.print("Please input int =");
  9.     x=Integer.parseInt(console.readLine());
  10.     System.out.println("you input int ="+x);
  11.    }
  12. }
複製代碼

作者: 林奕嘉    時間: 2012-10-5 20:20

  1. import java.lang.*;
  2. import java.io.Console;

  3. public class ch05
  4. {
  5.        public static void main (String args[])
  6.        {
  7.               Console console=System.console();
  8.               int x;
  9.               System.out.print("請輸入一個整數:");
  10.               x=Integer.parseInt(console.readLine());
  11.               System.out.println("您輸入的整數:"+x);
  12.        }
  13. }
複製代碼

作者: 許銘欽    時間: 2012-10-5 20:24

  1. import java.io.Console; //引入java.io類別
  2. public class ch05 //類別
  3. {
  4. public static void main(String args[]) //方法
  5. {
  6.    Console console = System.console();
  7.    int x;
  8.    System.out.print("請輸入一個整數:");
  9.    x = Integer.parseInt(console.readLine());
  10.    //Integer.parseInt(String s)只是將是數字的字串轉成數字
  11.    //參考http://ubuntu-rubyonrails.blogspot.tw/2009/01/java-integervalueof-integerparseint.html
  12.    System.out.print("輸入的整數為:"+x);
  13.    //若需入非數字時,需要有錯誤訊息來接(Exception throw),尚未教到
  14. }

  15. }
複製代碼

作者: 劉永記    時間: 2012-10-5 20:28

  1. import java.lang.*;       //類別庫,常用,自動載入,可忽略
  2. import java.io.Console;  // 抓使用者key 鍵盤時會用到
  3. public class ch05//類別
  4. {
  5.   public static void main (String arg[]) //方法
  6.   {
  7.     Console cs=System.console();  //宣告cs
  8.     int x;
  9.     System.out.print("請輸入一個整數 :");
  10.     x=Integer.parseInt(cs.readLine());
  11.     System.out.println("您輸入的數字為 :"+x);
  12.   }
  13. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2