- import java.io.Console;
- public class Ch05
- {
- public static void main(String args[])
- {
- String str1,str2;
- Console c =System.console();
- System.out.print("輸入字串一:");
- str1=c.readLine();
- System.out.println("字串一:"+str1);
- System.out.print("輸入字串二:");
- str2=c.readLine();
- System.out.println("字串二:"+str2);
- }[code]import java.io.Console;
- public class Ch04
- {
- public static void main(String args[])
- {
- String str1,str2;
- Console c=System.console();
-
- str1=c.readLine("輸入字串1:");
- str2=c.readLine("輸入字串2:");
-
- System.out.println("字串1"+str1);
- System.out.println("字串2"+str2);
- }
-
- }
複製代碼 }[/code] |