返回列表 發帖

資料輸入 (一)

運用套件 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 ASDF
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       String str1,str2;
  7.       Console c=System.console();
  8.       System.out.println("輸入字串一:");
  9.       str1=c.readLine();
  10.       System.out.println("字串一:"+str1);
  11.       System.out.println("輸入字串二:");
  12.       str2=c.readLine();
  13.       System.out.println("字串二:"+str2);
  14.     }
  15. }
複製代碼
  1. import java.io.Console;
  2. public class ASDF
  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. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

本帖最後由 陳品肇 於 2019-7-1 15:29 編輯
  1. import java.io.Console;
  2. public class Ch02
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1, str2;
  7.          Console A=System.console();

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

  10.          System.out.println("字串1: "+str1);
  11.          System.out.println("字串2: "+str2);
  12.          

  13.     }
  14. }
複製代碼
  1. import java.io.Console;
  2. public class Ch02
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;

  7.          Console A=System.console();
  8.          System.out.print("輸入字串一: ");

  9.          str1=A.readLine();
  10.          System.out.println("字串一: "+str1);

  11.          System.out.print("輸入字串二: ");

  12.          str2=A.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. }
複製代碼
  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("輸入字串1: ");
  9.          str2=c.readLine("輸入字串2: ");

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

TOP

  1. import java.io.Console;
  2. public class QWES
  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 nsezz
  3.          {[code]    import java.io.Console;
  4.          public class nsezz
  5.          {
  6.     public static void main(String args[])

  7.     {  String a,b;
  8.          Console  c=System.console()    ;
  9.          System.out.print("輸入字串一=");
  10.          a=c.readLine()                ;
  11.          System.out.println("字串一="+a);
  12.          System.out.print("輸入字串二=");
  13.          b=c.readLine()                     ;
  14.          System.out.println("字串二="+b);
  15.     }


  16.          }
複製代碼
  1. public static void main(String args[])

  2.     {  String a,b;
  3.          Console  c=System.console()    ;
  4.          System.out.print("輸入字串一=");
  5.          a=c.readLine()                ;
  6.          System.out.print("輸入字串二=");
  7.          b=c.readLine()                     ;
  8.          System.out.println("字串一="+a+"\n"+"字串二="+b);
  9.     }


  10.          }
複製代碼

TOP

  1. import java.lang.System;
  2. import java.io.Console;
  3. public class ch02
  4. {
  5.   public static void main(String args[])
  6.   {
  7.     String str1,str2;
  8.     Console c=System.console();
  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. }
複製代碼
import java.lang.System;
import java.io.Console;
public class ch02
{
  public static void main(String args[])
  {
    String str1,str2;
    Console c=System.console();
    str1=c.readLine("輸入字串一: ");
    str2=c.readLine("輸入字串二: ");

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


  }
}

TOP

本帖最後由 蔣宗儒 於 2019-7-1 15:54 編輯
  1.     import java.io.Console;
  2.   public class juniorCh05
  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. }
複製代碼
  1. import java.io.Console;
  2.   public class juniorCh05
  3.   {
  4.     public static void main(String args[])
  5.      {
  6.        String str1,str2;
  7.        Console c=System.console();
  8.         System.out.println("輸入字串一: ");
  9.            str1=c.readLine();
  10.         System.out.println("輸入字串一: ");
  11.            str2=c.readLine();
  12.        System.out.println("輸入字串一: "+str1);
  13.        System.out.println("輸入字串二: "+str2);

  14.     }
  15. }
複製代碼

TOP

返回列表