Board logo

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

作者: tonyh    時間: 2019-8-1 15:03     標題: 資料輸入 (一)

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

  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. }
複製代碼
  1. import java.io.Console;
  2. public class Ch03
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1, str2;
  7.          Console c=System.console();

  8.          str1=c.readLine("輸入字串1: ");
  9.          str2=c.readLine("輸入字串2: ");

  10.          System.out.println("字串1: "+str1);
  11.          System.out.println("字串2: "+str2);
  12.     }
  13. }
複製代碼

作者: 張郁庭    時間: 2019-8-1 15:34

  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.         str1=c.readLine("輸入字串一: ");
  9.         System.out.println("字串一: "+str1);
  10.         str2=c.readLine("輸入字串二: ");
  11.         System.out.println("字串二: "+str2);
  12.     }
  13. }
複製代碼

作者: 莊鈞程    時間: 2019-8-1 15:38

  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. }
複製代碼

作者: 許育禎    時間: 2019-8-1 15:39

  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.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. }
複製代碼

作者: 許育慈    時間: 2019-8-1 15:39

  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.print("請輸入字串一:");
  9.         str1=c.readLine();
  10.         System.out.println("字串一:"+str1);
  11.         System.out.print("請輸入字串二:");
  12.         str2=c.readLine();
  13.         System.out.print("字串二:"+str2);
  14.     }
  15. }
複製代碼

作者: 余奕廷    時間: 2019-8-1 15:40

  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.         str1=c.readLine("輸入字串一: ");
  9.         System.out.println("字串一: "+str1);
  10.         str2=c.readLine("輸入字串二: ");
  11.         System.out.println("字串二: "+str2);

  12.     }
  13. }
複製代碼

作者: 黃永恩    時間: 2019-8-1 15:41

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

作者: 許育慈    時間: 2019-8-1 15:41

  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.         str1=c.readLine("請輸入字串一:");
  9.         System.out.println("字串一:"+str1);

  10.         str2=c.readLine("請輸入字串二:");
  11.         System.out.print("字串二:"+str2);
  12.     }
  13. }
複製代碼

作者: 潘憶承    時間: 2019-8-1 15:42

  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. }
複製代碼

作者: 鄭宇崴    時間: 2019-8-1 15:43

  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.          
  9.          str1=c.readLine("輸入字串1: ");
  10.          str2=c.readLine("輸入字串2: ");
  11.          
  12.          System.out.println("字串1: "+str1);
  13.          System.out.println("字串2: "+str2);
  14.     }
  15. }
複製代碼

作者: 張書涵    時間: 2019-8-1 15:44

  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.         str1=c.readLine("請輸入字串一: ");
  9.         System.out.println("字串一: "+str1);
  10.         str2=c.readLine("請輸入字串二: ");
  11.         System.out.println("字串二 :"+str2);

  12.     }
  13. }
複製代碼

作者: 余映均    時間: 2019-8-1 15:45

  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.         str1=c.readLine("輸入字串1: ");
  9.         str2=c.readLine("輸入字串2: ");

  10.         System.out.println("字串1: "+str1);
  11.         System.out.println("字串2: "+str2);
  12.     }
  13. }
複製代碼

作者: 黃芊嬡    時間: 2019-8-1 15:47

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

  13.     }
  14. }
複製代碼

作者: 曾暘竣    時間: 2019-8-1 15:53

  1. import java.io.Console;
  2. public class Ch02
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1, str2;
  7.          Console c=System.console();

  8.          str1=c.readLine("輸入字串1: ");
  9.          str2=c.readLine("輸入字串2: ");

  10.          System.out.println("字串1: "+str1);
  11.          System.out.println("字串2: "+str2);
  12.     }
  13. }
複製代碼

作者: 何育翔    時間: 2019-8-1 15:54

  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);
複製代碼





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