Board logo

標題: 資料輸入 (四) - Scanner 類別 [打印本頁]

作者: 鄭繼威    時間: 2023-4-26 19:28     標題: 資料輸入 (四) - Scanner 類別

本帖最後由 鄭繼威 於 2023-4-26 20:28 編輯

利用套件 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. }
複製代碼

作者: 李彣    時間: 2023-4-26 20:38

  1. import java.util.Scanner;
  2. public class B
  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.          str1=s.nextLine();
  11.          System.out.println(str1);
  12.          str2=s.next();
  13.          System.out.println(str2);
  14.          a=s.nextInt();
  15.          System.out.println(a);
  16.          b=s.nextFloat();
  17.          System.out.println(b);
  18.     }
  19. }
複製代碼

作者: 黃裕恩    時間: 2023-4-26 20:40

  1. import java.util.Scanner;
  2. public class Sdlghtg
  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. }
複製代碼

作者: 林劭杰    時間: 2023-4-26 20:43

  1. import java.util.Scanner;
  2. public class dbb
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Scanner s=new Scanner(System.in);
  7.          String str1, str2;
  8.          int d;
  9.          float y;
  10.          str1=s.nextLine();
  11.          System.out.println(str1);
  12.          str2=s.next();
  13.          System.out.println(str2);
  14.          a=s.nextInt();
  15.          System.out.println(d);
  16.          b=s.nextFloat();
  17.          System.out.println(y);
  18.     }
  19. }
複製代碼

作者: 林劭澧    時間: 2023-4-26 20:45

  1. import java.util.Scanner;
  2. public class Sdlghtg
  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2