返回列表 發帖
  1. import ajva.io.Cosole;
  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("請輸入字串1:");
  9.          str1=c.readLine();
  10.          System.out.println("字串1"+str1);
  11.          System.out.print("請輸入字串2:");
  12.          str2=c.readLine();
  13.          System.out.println("字串2"+str2);

  14.     }
  15. }
複製代碼

TOP

返回列表