返回列表 發帖

資料輸入 (四) - Scanner 類別

本帖最後由 tonyh 於 2016-5-27 21:09 編輯

利用套件 java.util 中的 Scanner 類別, 來做資料輸入.

  1. import java.util.Scanner;
  2. public class Ch43
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String str1, str2;
  8.          int a;
  9.          float b;
  10.          System.out.print("請輸入一字串(帶空白): ");
  11.          str1=s.nextLine();
  12.          System.out.println(str1);
  13.          System.out.print("請輸入一字串(不帶空白): ");
  14.          str2=s.next();
  15.          System.out.println(str2);
  16.          System.out.print("請輸入一整數: ");
  17.          a=s.nextInt();
  18.          System.out.println(a);
  19.          System.out.print("請輸入一浮點數: ");
  20.          b=s.nextFloat();
  21.          System.out.println(b);
  22.     }
  23. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. import java.util.Scanner;
  2. public class Ch43
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String str1, str2;
  8.          int a;
  9.          float b;
  10.          System.out.print("請輸入一字串(帶空白): ");
  11.          str1=s.nextLine();
  12.          System.out.println(str1);
  13.          System.out.print("請輸入一字串(不帶空白): ");
  14.          str2=s.next();
  15.          System.out.println(str2);
  16.          System.out.print("請輸入一整數: ");
  17.          a=s.nextInt();
  18.          System.out.println(a);
  19.          System.out.print("請輸入一浮點數: ");
  20.          b=s.nextFloat();
  21.          System.out.println(b);
  22.     }
  23. }
複製代碼

TOP

本帖最後由 梁和雋 於 2016-5-27 21:22 編輯
  1. import java.util.Scanner;
  2. public class Ch30
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String x, y;
  8.          int a;
  9.          float b;
  10.          System.out.print("請輸入一字串(帶空白): ");
  11.          x=s.nextLine();
  12.          System.out.println(x);
  13.          System.out.print("請輸入一字串(不帶空白): ");
  14.          y=s.next();
  15.          System.out.println(y);
  16.          System.out.print("請輸入一整數: ");
  17.          a=s.nextInt();
  18.          System.out.println(a);
  19.          System.out.print("請輸入一浮點數: ");
  20.          b=s.nextFloat();
  21.          System.out.println(b);
  22.     }
  23. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

  1. import java.util.Scanner;
  2. public class Ch42{
  3.        public static void main(String args[]){
  4.               String str1, str2;
  5.               int x;
  6.               float y;
  7.               Scanner sc=new Scanner(System.in);
  8.               System.out.print("請輸入一字串(帶空白): ");
  9.               str1=sc.nextLine();
  10.               System.out.println(str1);
  11.               System.out.print("請輸入一字串(不空白): ");
  12.               str2=sc.next();
  13.               System.out.println(str2);
  14.               System.out.print("請輸入一整數:  ");
  15.               x=sc.nextInt();
  16.               System.out.println(x);
  17.               System.out.print("請輸入一浮點數: ");
  18.               y=sc.nextFloat();
  19.               System.out.println(y);
  20.        }
  21. }
複製代碼
ABCDEFGHIJKLMNOPQRSTUVWXYZ

TOP

  1. import java.util.Scanner;
  2. public class Ch46
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Scanner s = new Scanner(System.in);
  7.         String str1, str2;
  8.         int x;
  9.         float y;
  10.         System.out.print("輸入一字串(含空白):");
  11.         str1 = s.nextLine();
  12.         System.out.println("你輸入:"+str1);
  13.         System.out.print("輸入一字串(不含空白):");
  14.         str2 = s.next();
  15.         System.out.println("你輸入:"+str2);
  16.         System.out.print("輸入一整數:");
  17.         x = s.nextInt();
  18.         System.out.println("你輸入:"+x);;
  19.         System.out.print("輸入一浮點數:");
  20.         y = s.nextFloat();
  21.         System.out.println("你輸入:"+y);














  22.     }
  23. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch43
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String str1, str2;
  8.          int a;
  9.          float b;
  10.          System.out.print("請輸入一字串(帶空白): ");
  11.          str1=s.nextLine();
  12.          System.out.println(str1);
  13.          System.out.print("請輸入一字串(不帶空白): ");
  14.          str2=s.next();
  15.          System.out.println(str2);
  16.          System.out.print("請輸入一整數: ");
  17.          a=s.nextInt();
  18.          System.out.println(a);
  19.          System.out.print("請輸入一浮點數: ");
  20.          b=s.nextFloat();
  21.          System.out.println(b);
  22.     }
  23. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch47
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String str1, str2;
  8.          int a;
  9.          float b;
  10.          System.out.print("輸入字串(帶空): ");
  11.          str1=s.nextLine();
  12.          System.out.println(str1);
  13.          System.out.print("輸入字串(不帶空): ");
  14.          str2=s.next();
  15.          System.out.println(str2);
  16.          System.out.print("輸入整數: ");
  17.          a=s.nextInt();
  18.          System.out.println(a);
  19.          System.out.print("輸入浮點數: ");
  20.          b=s.nextFloat();
  21.          System.out.println(b);
  22.     }
  23. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch43
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String str1, str2;
  8.          int a;
  9.          float b;
  10.          System.out.print("請輸入一字串(帶空白): ");
  11.          str1=s.nextLine();
  12.          System.out.println(str1);
  13.          System.out.print("請輸入一字串(不帶空白): ");
  14.          str2=s.next();
  15.          System.out.println(str2);
  16.          System.out.print("請輸入一整數: ");
  17.          a=s.nextInt();
  18.          System.out.println(a);
  19.          System.out.print("請輸入一浮點數: ");
  20.          b=s.nextFloat();
  21.          System.out.println(b);
  22.     }
  23. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch43
  3. {
  4.     public static void main(String arg[])
  5.     {
  6.         Scanner s=new Scanner(System.in);
  7.         String str1, str2;
  8.         int a;
  9.         float b;
  10.         System.out.print("請輸入一字串(帶空白): ");
  11.         str1 = s.nextLine();
  12.         System.out.println(str1);
  13.         System.out.print("請輸入一字串(不帶空白): ");
  14.         str2 = s.next();
  15.         System.out.println(str2);
  16.         System.out.print("請輸入一整數: ");
  17.         a = s.nextInt();
  18.         System.out.println(a);
  19.         System.out.print("請輸入一浮點數: ");
  20.         b = s.nextFloat();;
  21.         System.out.println(b);
  22.     }
  23. }
複製代碼

TOP

返回列表