Board logo

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

作者: tonyh    時間: 2021-1-21 14:51     標題: 資料輸入 (一)

運用套件 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-1-21 15:31

  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("Enter Sentence 1: ");
  9.         System.out.println("Senetence 1: "+str1);
  10.         str2=c.readLine("Enter Sentence 2: ");
  11.         System.out.println("Sentence 2: "+str2);
  12.     }
  13. }
複製代碼

作者: 紀承典    時間: 2021-1-21 15:36

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

作者: 楊小萱    時間: 2021-1-21 15:37

本帖最後由 楊小萱 於 2021-1-21 15:41 編輯
  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.         
  11.         System.out.println("字串1:"+str1);
  12.         System.out.println("字串2:"+str2);
  13.     }
  14. }
複製代碼

作者: 藍健洲    時間: 2021-1-21 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. }
複製代碼

作者: 卓炘暘    時間: 2021-1-21 15:38

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

作者: 李柏穎    時間: 2021-1-21 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. }
複製代碼

作者: 楊澤全    時間: 2021-1-21 15:39

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

作者: 王博裕    時間: 2021-1-21 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.     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-1-21 15:48

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

  10.         System.out.println("字串α為:"+str1);
  11.         System.out.println("字串β為:"+str2);
  12.     }

  13. }
複製代碼

作者: 劉凱閔    時間: 2021-1-21 15:50

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


  7.         str1=c.readLine("輸入字串一:");
  8.         str2=c.readLine("輸入字串二:");

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


  11.     }
  12. }
複製代碼

作者: 紀承典    時間: 2021-1-21 15:55

  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int a;
  7.          float b;
  8.          Console c=System.console();
  9.          a=Integer.parseInt(c.readline("輸入一整數:"));
  10.           System.out.println("剛輸入:"+a");
  11.           b=Float.parseFloat(c.readline("輸入一浮點數:"));
  12.           System.out.println("剛輸入:"+b");
  13.     }
  14. }
複製代碼





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