返回列表 發帖

資料輸入 (一)

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

本帖最後由 古蕾娜 於 2019-7-1 15:16 編輯
  1. public class Ch05
  2. {
  3.      public static void main(String args[])
  4.       {
  5.          String str1,str2;
  6.          Console c=System.console();
  7.          System.out.print("Enter Text1: ");
  8.          str1=c.readLine();
  9.          System.out.print("Text1: "+str1);
  10.          System.out.print("Enter Text2: ");
  11.          str2=c.readLine();
  12.          System.out.println("Text2: "+str2);
  13.       }
  14. }
複製代碼
  1. public class Ch06
  2. {
  3.      public static void main(String args[])
  4.       {
  5.          String str1,str2;
  6.          Console c=System.console();
  7.          
  8.          str1=c.readLine("Enter Text1: ");
  9.          str2=c.readLine("Enter Text2: ");

  10.          System.out.println("Text1: "+str1);
  11.          System.out.println("Text2: "+str2);
  12.       }
  13. }
複製代碼

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

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 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("輸入字串一:");
  9.          System.out.println("字串一:"+str1);

  10.          str2=c.readLine("輸入字串二:");
  11.          System.out.println("字串二:"+str2);
  12.     }


  13. }
複製代碼

TOP

本帖最後由 陳璽安 於 2019-7-1 15:26 編輯
  1. import java.io.Console;
  2. public class Ch05
  3.        {
  4.          pulib static void main(String args[])
  5.          {
  6.                String strl,str2;
  7.                Console c=System.console();
  8.                System.out.print("輸入字串一: ");
  9.                strl=c.readline();
  10.                System.out.print("字串一: "+strl");
  11.                 System.out.print("輸入字串二: ");
  12.                strl=c.readline();
  13.                System.out.print("字串二: "+strl");

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

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.      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.     }
複製代碼
  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("輸入字串一:  ");

  9.      str2=c.readLine("輸入字串二:  ");
  10.       System.out.println("字串一:  "+str1);
  11.      System.out.println("字串二:  "+str2);
  12.     }




  13.   }
複製代碼

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

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.outpint("輸入字串一:");
  9.           str1=c.readline();
  10.           System.out.println("字串一:"+str1);
  11.           System.outpint("輸入字串二:");
  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.          // System.outpint("輸入字串一:");
  9.           str1=c.readline("輸入字串一:");
  10.           str2=c.readline("輸入字串二:");
  11.           System.out.println("字串一:"+str1);
  12.          // System.outpint("輸入字串二:");

  13.           System.out.println("字串二:"+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.        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. }
複製代碼

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

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

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

  12.          System.out.print("輸入字串一: ");
  13.          str1=c.readLine();
  14.          System.out.println("字串一: "+str1);
  15.          System.out.print("輸入字串二: ");
  16.          str2=c.readLine();
  17.          System.out.println("字串二: "+str2);
  18.     }
  19. }
  20. }
複製代碼

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.     }[code]import java.io.Console;
  15. public class Ch04
  16. {
  17.     public static void main(String args[])
  18.     {
  19.          String str1,str2;
  20.          Console c=System.console();
  21.          
  22.          str1=c.readLine("輸入字串1:");
  23.          str2=c.readLine("輸入字串2:");
  24.          
  25.          System.out.println("字串1"+str1);
  26.          System.out.println("字串2"+str2);
  27.     }
  28.    
  29. }
複製代碼
}[/code]

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 Ch03
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();
  8.          
  9.          
  10.          str1=c.readLine("輸入字串一:");
  11.          str2=c.readLine("輸入字串二:");
  12.          
  13.          System.out.println("字串一:"+str1);
  14.          System.out.println("字串二:"+str2);
  15.      }
  16. }
複製代碼

TOP

本帖最後由 古昇暘 於 2019-7-1 15:27 編輯
  1. import java.io.Console;
  2. public class Cl04
  3. {
  4.     public static void main (String args[])
  5.     {
  6.         String str1,str2;
  7.         Console c=System.console();
  8.         System.out.println("Please enter a word one ");
  9.         str1=c.readLine();
  10.         System.out.println("word one: "+str1);
  11.         System.out.println("Please enter a word two");
  12.         str2=c.readLine();
  13.         System.out.println("Word 2: "+str2);
  14.     }
  15. }[code]
複製代碼
import java.io.Console;
public class Cl05
{
    public static void main (String args[])
    {
        String str1,str2;
        Console c=System.console();
        //System.out.println("Please enter a word one ");
        str1=c.readLine("Please enter a word one ");
        System.out.println("word one: "+str1);
        //System.out.println("Please enter a word two");
        str2=c.readLine("Please enter a word two ");
        System.out.println("Word 2: "+str2);
    }
}[/code]

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

TOP

本帖最後由 葉子于 於 2019-7-1 15:29 編輯
  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. }
複製代碼
  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("輸入字串一: ");

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

TOP

  1. public class Ch05
  2. {
  3.     public static void main(String args[])
  4.     {
  5.       String str1,Str2;
  6.       Console c=System.console();
  7.       
  8.       str1=c.readLine("輸入字串1:");
  9.       str2=c.readLine("輸入字串2:");

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

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.     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# tonyh

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

TOP

返回列表