返回列表 發帖

資料輸入 (二)

  1. import java.lang.Integer;  //可忽略
  2. import java.lang.System;  //可忽略
  3. import java.io.Console;
  4. public class ch06
  5. {
  6.     public static void main(String args[])
  7.     {
  8.          Console c=System.console();
  9.          int x;
  10.          System.out.print("輸入一整數: ");
  11.          x=Integer.parseInt(c.readLine());  //利用Integer類別裡的parseInt()方法,將抓到的字串轉換為整數型態
  12.          System.out.println("您剛輸入: "+x);
  13.     }
  14. }
複製代碼

  1. import java.io.Console;
  2. public class ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int x;
  8.         System.out.print("輸入一整數: ");
  9.         x=Integer.lparseInt(c.readLine());
  10.         System.out.print("您輸入的是"+x);
  11.     }
  12. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int x;
  8.         System.out.print("輸入一整數: ");
  9.         x=Integer.lparseInt(c.readLine());
  10.         System.out.print("您輸入的是"+x);
  11.     }
  12. }
複製代碼

TOP

  1. import java.lang.Integer;  
  2. import java.lang.System;  
  3. import java.io.Console;
  4. public class ch06
  5. {
  6.     public static void main(String args[])
  7.     {
  8.          Console c=System.console();
  9.          int x;
  10.          System.out.print("輸入一整數: ");
  11.          x=Integer.parseInt(c.readLine());
  12.          System.out.println("您剛輸入: "+x);
  13.     }
  14. }
複製代碼

TOP

  1. import java.lang.*;
  2. import java.io.Console;
  3. public class ch06

  4. {
  5.   public static void main (String args[])
  6.     {
  7.         Console c=System.console();
  8.         int x;
  9.         System.out.print("請輸入任一字串; ");
  10.         x=Integer.parseInt(c.readLine());
  11.         System.out.print("您輸入:"+x);
  12.     }
  13. }
複製代碼

TOP

  1. import java.lang.Integer;
  2. import java.lang.System;
  3. import java.io.Console;
  4. public class ch06
  5. {
  6.     public static void main(String args[])
  7.     {
  8.          Console c=System.console();
  9.          int x;
  10.          System.out.print("輸入一整數: ");
  11.          x=Integer.parseInt(c.readLine());
  12.          System.out.println("您剛輸入: "+x);
  13.     }
  14. }
複製代碼

TOP

  1. import java.lang.Integer;
  2. import java.lang.System;
  3. import java.io.Console;
  4. public class ch06
  5. {
  6.        public static void main(String args[])
  7.        {
  8.         Console c=System.console();
  9.         int x;
  10.         System.out.print("輸入整數: ");
  11.         x=Integer.parseInt(c.readLine());
  12.         System.out.println("您剛輸入: "+x);
  13.        }

  14. }
複製代碼

TOP

返回列表