Board logo

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

作者: tonyh    時間: 2020-7-3 19:57     標題: 資料輸入 (一)

運用套件 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. }
複製代碼

作者: 孫嘉駿    時間: 2020-7-3 20:19

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

作者: 林政瑜    時間: 2020-7-3 20:19

  1. import java.io.Console;
  2. public class Ch01
  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. }
複製代碼

作者: 李宇澤    時間: 2020-7-3 20:19

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

作者: 黃辰昊    時間: 2020-7-3 20:20

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

作者: 孫嘉駿    時間: 2020-7-3 20: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.          
  9.          str1=c.readLine("輸入字串一: ");
  10.          str2=c.readLine("輸入字串二: ");

  11.          System.out.println("字串一: "+str1);
  12.          System.out.println("字串二: "+str2);
  13.     }
  14. }
複製代碼

作者: 蔡忻霓    時間: 2020-7-3 20:23

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

作者: 沈子晏    時間: 2020-7-3 20:25

  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("字串1: "+str1);

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

作者: 黃宥華    時間: 2020-7-3 20:25

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

作者: 蔡忻霓    時間: 2020-7-3 20:25

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

作者: 黃辰昊    時間: 2020-7-3 20:26

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

作者: 陳宥穎    時間: 2020-7-3 20:26

本帖最後由 陳宥穎 於 2020-7-3 20:28 編輯
  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.    public static void main(String arvg[])
  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. }
複製代碼

作者: 李宇澤    時間: 2020-7-3 20:26

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

作者: 黃宥華    時間: 2020-7-3 20:27

  1. import java.io.Console;
  2. public class Pig
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String s1,s2;
  7.         Console c=System.console();
  8.         s1=c.readLine("請輸入字串1");
  9.         s2=c.readLine("請輸入字串2");

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

作者: 陳宥穎    時間: 2020-7-3 20:30

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

作者: 董宸佑    時間: 2020-7-3 20:30

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

  14.     }
  15. }
複製代碼

作者: 董宸佑    時間: 2020-7-3 20:47

  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("輸入字串一: ");
  10.         str2=c.readLine("輸入字串二: ");

  11.         System.out.println("字串一: "+str1);
  12.         System.out.println("字串二: "+str2);

  13.     }
  14. }
複製代碼

作者: 夏子涵    時間: 2020-7-10 19:05

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

作者: 黃柏叡    時間: 2020-7-15 15:54

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

作者: 劉愷鈞    時間: 2020-7-16 19:59

  1. import java.io.Console;
  2. public class Ch01
  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. }
複製代碼





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