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

TOP

回復 19# 賴駿榮
  1. import java.io.Console;
  2. public class ch06
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     int x;
  7.     float y;
  8.     Console c=System.console();
  9.     x=Integer.parseInt(c.readLine("輸入一整數:"));
  10.     System.out.println("剛輸入:"+x);
  11.     y=Float.parseFloat(c.readLine("輸入一浮點數:"));
  12.     System.out.println("剛輸入:"+y);
  13.   }
  14. }
複製代碼

TOP

返回列表