本帖最後由 蔣宗儒 於 2019-7-1 15:54 編輯
- import java.io.Console;
- public class juniorCh05
- {
- public static void main(String args[])
- {
- String str1,str2;
- Console c=System.console();
- str1=c.readLine("輸入字串一");
- str2=c.readLine("輸入字串二");
- System.out.println("輸入字串一: "+str1);
- System.out.println("輸入字串二: "+str2);
- }
- }
複製代碼- import java.io.Console;
- public class juniorCh05
- {
- public static void main(String args[])
- {
- String str1,str2;
- Console c=System.console();
- System.out.println("輸入字串一: ");
- str1=c.readLine();
- System.out.println("輸入字串一: ");
- str2=c.readLine();
- System.out.println("輸入字串一: "+str1);
- System.out.println("輸入字串二: "+str2);
- }
- }
複製代碼 |