Board logo

標題: 資料輸入 (一) [打印本頁]

作者: tonyh    時間: 2016-3-11 20:39     標題: 資料輸入 (一)

本帖最後由 tonyh 於 2016-3-11 21:10 編輯

運用套件 java.io 下的 Console 類別, 作字串輸入的練習.

[attach]1562[/attach]
  1. import java.io.Console;   //引入套件java.io下的Console類別
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();  //在Console類別下建立一名為c的實體物件,使用到System類別的console()方法
  8.          System.out.print("請輸入字串一: ");
  9.          str1=c.readLine();      //使用readLine()方法來抓取自鍵盤輸入的字串
  10.          System.out.println("字串一: "+str1);
  11.          System.out.print("請輸入字串二: ");
  12.          str2=c.readLine();
  13.          System.out.println("字串二: "+str2);
  14.     }
  15. }
複製代碼

作者: 梁和雋    時間: 2016-3-11 21:10

本帖最後由 梁和雋 於 2016-3-11 21:21 編輯
  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();
  8.          System.out.print("請輸入字串一: ");
  9.          str1=c.readLine();      
  10.          System.out.println("字串一: "+str1);
  11.          System.out.print("請輸入字串二: ");
  12.          str2=c.readLine();
  13.          System.out.println("字串二: "+str2);
  14.     }
  15. }
複製代碼

作者: 曾挺桂    時間: 2016-3-11 21:11

  1. import java.io.Console;
  2. public class Ch012314
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();
  8.          System.out.print("請輸入字串一: ");
  9.          str1=c.readLine();      
  10.          System.out.println("字串一: "+str1);
  11.          System.out.print("請輸入字串二: ");
  12.          str2=c.readLine();
  13.          System.out.println("字串二: "+str2);
  14.     }
  15. }
複製代碼

作者: 洪振庭    時間: 2016-3-11 21:12

  1. import ajva.io.Cosole;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();
  8.          System.out.print("請輸入字串1:");
  9.          str1=c.readLine();
  10.          System.out.println("字串1"+str1);
  11.          System.out.print("請輸入字串2:");
  12.          str2=c.readLine();
  13.          System.out.println("字串2"+str2);

  14.     }
  15. }
複製代碼

作者: 黃璽安    時間: 2016-3-11 21:14

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.        public static void main(String args[])
  5.        {
  6.          String str1,str2;
  7.          Console c=System.console();
  8.          System.out.print("請輸入字串一: ");
  9.          str1=c.readLine();
  10.          System.out.println("字串一: "+str1);
  11.          System.out.print("請輸入字串二: ");
  12.          str2=c.readLine();
  13.          System.out.println("字串二: "+str2);

  14.        }

  15. }
複製代碼

作者: 黃柏維    時間: 2016-3-11 21:14

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.      public static void main(String args[])
  5.      {
  6.           String str1 , str2;
  7.           Console c=System.console();
  8.           System.out.print("請輸入字串一: ");
  9.           str1= c.readLine();
  10.           System.out.println("字串一: "+str1);
  11.           System.out.print("請輸入字串二: ");
  12.           str2= c.readLine();
  13.           System.out.println("字串二: "+str2);

  14.      }

  15. }
複製代碼

作者: 沈子耕    時間: 2016-3-11 21:15

  1. import java.io.Console;
  2. public class Ch05{
  3.        public static void main(String args[]){
  4.               String str1, str2;
  5.               Console c=System.console();
  6.               System.out.println("請輸入字串1:");
  7.               str1=c.readLine();
  8.               System.out.println(str1);
  9.               System.out.println("請輸入字串2:");
  10.               str2=c.readLine();
  11.               System.out.println(str2);
  12.        }
  13. }
複製代碼

作者: 陳思惟    時間: 2016-3-11 21:18

本帖最後由 陳思惟 於 2016-3-11 21:22 編輯
  1. import java.io.Console;   //引入套件java.io下的Console類別
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();
  8.          System.out.print("請輸入字串一: ");
  9.          str1=c.readLine();
  10.          System.out.println("字串一: "+str1);
  11.          System.out.print("請輸入字串二: ");
  12.          str2=c.readLine();
  13.          System.out.println("字串二: "+str2);
  14.     }
  15. }
複製代碼

作者: 李知易    時間: 2016-3-11 21:22

  1. import java.io.Console;
  2. public class Ch04
  3. {
  4.       public static void main (String args[])
  5.       {
  6.          string str1 ,str2;
  7.          Console c=System.console;
  8.          System.out.println("請輸入字串1:")
  9.          str1=c.readLine();
  10.          System.out.println("字串1:"+str1)
  11.          System.out.println("請輸入字串2:")
  12.          str2=c.readLine();
  13.          System.out.println("字串2:"+str2)
  14.       }

  15. }
複製代碼

作者: 王翔    時間: 2016-3-17 20:21

  1. import java.io.Console;
  2. public class Ch05{
  3.   public static void main(String args[]){
  4.          String str1, str2;
  5.          Console c =System.console();
  6.          System.out.print("請輸入字串一 : ");
  7.          str1=c.readLine();
  8.          System.out.println("字串一 : "+str1);
  9.          System.out.print("請輸入字串二 : ");
  10.          str2=c.readLine();
  11.          System.out.println("字串二 : "+str2);


  12.   }
  13. }
複製代碼





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