返回列表 發帖
本帖最後由 蔣宗儒 於 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

返回列表