返回列表 發帖

資料輸入 (一)

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

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

TOP

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

TOP

  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. }
複製代碼
李宇澤Oscar

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

本帖最後由 陳宥穎 於 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. }
複製代碼

TOP

  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. }
複製代碼
李宇澤Oscar

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表