本帖最後由 許婷芳 於 2020-6-6 10:44 編輯
運用套件 java.io 下的 Console 類別, 作字串輸入的練習.- import java.io.Console; //java的input&output
- public class Ch01
- {
- public static void main(String args[])
- {
- String str1,str2;
- Console c=System.console(); //把所有輸入的東西放到c裡面
- System.out.print("輸入字串1:");
- str1=c.readLine(); //一行一行讀取
- System.out.print("輸入字串2:");
- str2=c.readLine();
- System.out.println("字串1="+str1);
- System.out.println("字串2="+str2);
- }
- }
複製代碼 |