本帖最後由 tonyh 於 2017-1-21 11:36 編輯
試使用 Console 類別,輸入兩組字串。- import java.io.Console; //引入 java.io 套件下的 Console 類別
- public class ch05
- {
- public static void main(String args[])
- {
- String str1, str2;
- Console c=System.console(); //在Console類別下建立一名為c的實體物件,將System類別下console()方法所回傳的console物件丟入
- System.out.print("輸入第一個字串: ");
- str1=c.readLine(); //使用readLine()方法來抓取自鍵盤輸入的字串
- System.out.print("輸入第二個字串: ");
- str2=c.readLine();
- System.out.println("剛輸入的第一個字串: "+str1);
- System.out.println("剛輸入的第二個字串: "+str2);
- }
- }
複製代碼 |