返回列表 發帖
  1. public class Ch05
  2. {
  3.     public static void main(String args[])
  4.     {
  5.       String str1,Str2;
  6.       Console c=System.console();
  7.       
  8.       str1=c.readLine("輸入字串1:");
  9.       str2=c.readLine("輸入字串2:");

  10.       System.out.println("字串1:"+str1);
  11.       System.out.println("字串1:"+str1);
  12.     }
  13. }
複製代碼

TOP

返回列表