返回列表 發帖
  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String a, b;
  7.          Console c=System.console();
  8.          a=c.readLine("輸入字串1: ");
  9.          b=c.readLine("輸入字串2: ");
  10.          System.out.println("字串1: "+a);
  11.          System.out.println("字串2: "+b);
  12.     }
  13. }
複製代碼

TOP

返回列表