返回列表 發帖

資料輸入 (四) - Scanner 類別

利用套件 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. package text369;
  2. import java.lang.System;
  3. import java.util.Scanner;
  4. public class text123 {
  5. public static void main(String[] args) {
  6. int x;
  7. float y;
  8. String z,k;
  9. Scanner s=new Scanner(System.in);
  10. System.out.println("請輸入一字串(含空白):");
  11. z=s.nextLine();
  12. System.out.println(z);
  13. System.out.println("請輸入一字串(不含空白):");
  14. k=s.next();
  15. System.out.println(k);
  16. System.out.println("請輸入一整數:");
  17. x=s.nextInt();
  18. System.out.println(x);
  19. System.out.println("請輸入一福點數:");
  20. y=s.nextFloat();
  21. System.out.println(y);
  22.         }

  23. }
複製代碼
張閎鈞OuO

TOP

  1. import java.lang.System;
  2. import java.util.Scanner;
  3. public class asdf
  4. {
  5.         public static void main(String args[])
  6.         {
  7.                 Scanner s=new Scanner(System.in);
  8.                 String st1,st2;
  9.                 int a;
  10.                 float b;
  11.                 System.out.print("請輸入一字串(帶空白): ");
  12.                 st1=s.nextLine();
  13.                 System.out.println(st1);
  14.                 System.out.print("請輸入一字串(不帶空白): ");
  15.                 st2=s.nextLine();
  16.                 System.out.println(st2);
  17.                 System.out.print("請輸入一整數: ");
  18.                 a=s.nextInt();
  19.                 System.out.println(a);
  20.                 System.out.print("請輸入一浮點數: ");
  21.                 b=s.nextFloat();
  22.                 System.out.println(b);
  23.         }
  24. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. package ch01;

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

TOP

  1. package ch02;

  2. import java.util.Scanner;

  3. public class CH02 {
  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 Nsez {
  3.     public static void main(String args[])
  4.     {Scanner z=new Scanner (System.in);
  5.     String a,b;
  6.      int c ;
  7.      float d;
  8.         System.out.print("輸入一字串(有空白)");
  9.         a=z.nextLine();
  10.         System.out.println(a);
  11.         System.out.print("輸入一字串(無空白)");
  12.         b=z.next();
  13.         System.out.println(b);
  14.         System.out.print("輸入一整數");
  15.         c=z.nextInt();
  16.         System.out.println(c);
  17.         System.out.print("輸入一浮點數");
  18.         d=z.nextFloat();
  19.         System.out.println(d);
  20.         
  21.     }

  22. }
複製代碼

TOP

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

TOP

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

TOP

  1. import java.lang.System;
  2. import java.util.Scanner;

  3. public class Ch06 {
  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.print(b);
  22.    
  23.    
  24.    
  25.    
  26.    
  27.    
  28.     }

  29. }
複製代碼

TOP

返回列表