Board logo

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

作者: tonyh    時間: 2021-8-7 20:26     標題: 資料輸入 (一)

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

作者: 林鼎傑    時間: 2021-8-7 20:57

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

作者: 黃子倢    時間: 2021-8-7 20:58

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

作者: 王秉鈞    時間: 2021-8-7 20:59

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

  12.     }
  13. }
複製代碼

作者: 余柏緯    時間: 2021-8-7 20:59

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

作者: 林佑宸    時間: 2021-8-7 21:00

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

作者: 許洧熏    時間: 2021-8-7 21:01

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

作者: 朱奕祐    時間: 2021-8-14 17:36

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

作者: 呂尚霖    時間: 2021-8-14 19:40

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

作者: 俞成章    時間: 2021-8-14 19: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 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. }
複製代碼

作者: 蔡寓珉    時間: 2021-8-14 19: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.          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. }
複製代碼

作者: 冠宇    時間: 2021-8-14 19:44

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

作者: 林土水    時間: 2021-8-14 20:02

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

作者: 陳志祐    時間: 2021-8-14 20:06

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