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

TOP

返回列表