Board logo

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

作者: 鄭繼威    時間: 2022-12-16 20:31     標題: 資料輸入 (四) - Scanner 類別

本帖最後由 鄭繼威 於 2022-12-17 09:30 編輯

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

作者: 孫子傑    時間: 2022-12-17 12:00

  1. import java.util.*;
  2. public class Ch39
  3. {
  4.     public static void main(String args[])
  5.     {
  6.        Scanner s=new Scanner(System.in);
  7.        String s1,s2;
  8.        int a;
  9.        float b;
  10.        System.out.print("請輸入一字串(帶空白): ");
  11.        s1=s.nextLine();
  12.        System.out.println(s1);
  13.        System.out.print("請輸入一字串(不帶空白): ");
  14.        s2=s.next();
  15.        System.out.println(s2);
  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. }
複製代碼

作者: 柳侑辰    時間: 2022-12-17 12:01

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

作者: 曾善勤    時間: 2022-12-17 12:03

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

作者: 許宸瑀    時間: 2022-12-17 12:03

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

作者: 利勁鋼    時間: 2022-12-20 20:21

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

作者: 高昀昊    時間: 2022-12-23 20:01

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

作者: 林紘憲    時間: 2022-12-31 10:00

  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. }
複製代碼





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