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

TOP

返回列表