返回列表 發帖
本帖最後由 啓銓 於 2018-9-17 20:35 編輯
  1. import java.io.Console;
  2. public class Ch01
  3. {
  4.     public static void main (String args[])
  5.     {
  6.       String str, str2;
  7.       Console c= System.console();
  8.       str=c.readLine("輸入字串1:");
  9.       str2=c.readLine("輸入字串2:");
  10.       System.out.println("你剛輸入了:"+str);
  11.       System.out.println("你剛輸入了:"+str2);
  12.     }
  13. }
複製代碼

TOP

返回列表