Board logo

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

作者: tonyh    時間: 2019-7-1 14:46     標題: 資料輸入 (一)

運用套件 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:14

本帖最後由 古蕾娜 於 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. }
複製代碼

作者: 吳庭慈    時間: 2019-7-1 15:15

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

作者: 宋威廷    時間: 2019-7-1 15:19

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

作者: 李佳諭    時間: 2019-7-1 15:20

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

作者: 陳璽安    時間: 2019-7-1 15:22

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

作者: 李從赫    時間: 2019-7-1 15:23

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

作者: 宋威廷    時間: 2019-7-1 15:24

  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:25

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

作者: 陳智鈞    時間: 2019-7-1 15:25

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

作者: 李沛儒    時間: 2019-7-1 15:26

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

作者: 劉欽文    時間: 2019-7-1 15:26

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

作者: 陳致翰    時間: 2019-7-1 15:26

  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]
作者: 王煦    時間: 2019-7-1 15:26

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

作者: 古昇暘    時間: 2019-7-1 15:26

本帖最後由 古昇暘 於 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]
作者: 李承洋    時間: 2019-7-1 15:27

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

作者: 葉子于    時間: 2019-7-1 15:28

本帖最後由 葉子于 於 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. }
複製代碼

作者: 張啟廣    時間: 2019-7-1 15:28

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

作者: 賴駿榮    時間: 2019-7-1 15:31

  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
作者: 蔡杰希    時間: 2019-7-1 15:44

  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:48

  1. import java.io.Console;
  2. public class Ch06
  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: ");[code]
  10. [code]import java.io.Console;
  11. public class Ch05
  12. {
  13.     public static void main(String args[])
  14.     {
  15.        String str1,str2;
  16.        Console c=System.console();
  17.        System.out.print("輸入字串一: ");
  18.        str1=c.readLine();
  19.         System.out.println("字串一: "+str1);
  20.         System.out.print("輸入字串二: ");
  21.         str2=c.readLine();
  22.         System.out.println("字串二: "+str2);
  23.     }
  24. }
複製代碼

作者: 蔡杰恩    時間: 2019-7-1 15:49

本帖最後由 蔡杰恩 於 2019-7-1 15:50 編輯
  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. }
複製代碼

作者: 謝宗佑    時間: 2019-7-1 15:50

  1. [code][code][code][code][code][code][code][code][code][code][code][code][code][code][code][code][code][code][code] 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. }
複製代碼
[/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code]
作者: 謝宗佑    時間: 2019-7-1 15:50

  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("字串1:"+str2);

  12.   }
  13. }
複製代碼

作者: 賴駿榮    時間: 2019-7-1 15:53

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

作者: 陳致翰    時間: 2019-7-1 15:53

  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x;
  7.          float y;
  8.          Console c=System.console();
  9.          System.out.print("輸入一整數: ");
  10.          x=Integer.parseInt(c.readLine());
  11.          System.out.println("剛輸入: "+x);
  12.          System.out.print("輸入一浮點數: ");
  13.          y = Float.parseFloat(c.readLine());
  14.          System.out.println("剛輸入"+y);
  15.     }
  16.     [code]
  17. import java.io.Console;
  18. public class Ch07
  19. {
  20.     public static void main(String args[])
  21.     {
  22.          int x;
  23.          float y;
  24.          Console c=System.console();
  25.          x=Integer.parseInt(c.readLine("輸入一整數: "));
  26.          System.out.println("剛輸入: "+x);
  27.          y = Float.parseFloat(c.readLine("輸入一浮點數: "));
  28.          System.out.println("剛輸入"+y);
  29.     }
  30.    
  31. }
複製代碼
}[/code]




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