返回列表 發帖
  1. import java.io.Console;
  2. public class Pig
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String s1,s2;
  7.         Console c=System.console();
  8.         System.out.println("請輸入字串1");
  9.         s1=c.readLine();
  10.         System.out.println("字串1"+s1);
  11.         System.out.println("請輸入字串2");
  12.         s2=c.readLine();
  13.         System.out.println("字串2"+s2);
  14.     }
  15. }
複製代碼
hahahahahahahaha

TOP

  1. import java.io.Console;
  2. public class Pig
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String s1,s2;
  7.         Console c=System.console();
  8.         s1=c.readLine("請輸入字串1");
  9.         s2=c.readLine("請輸入字串2");

  10.         System.out.println("字串1"+s1);
  11.         System.out.println("字串2"+s2);
  12.     }
  13. }
複製代碼
hahahahahahahaha

TOP

返回列表