中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java輸入語句scanner如何使用

小億
117
2023-11-13 17:19:35
欄目: 編程語言

使用Scanner類進行輸入操作需要進行以下步驟:

  1. 導入Scanner類:
import java.util.Scanner;
  1. 創建Scanner對象:
Scanner scanner = new Scanner(System.in);
  1. 使用Scanner對象進行輸入操作:
  • 使用next()方法獲取輸入的字符串:
String inputString = scanner.next();
  • 使用nextInt()方法獲取輸入的整數:
int inputInt = scanner.nextInt();
  • 使用nextDouble()方法獲取輸入的浮點數:
double inputDouble = scanner.nextDouble();
  • 使用nextBoolean()方法獲取輸入的布爾值:
boolean inputBoolean = scanner.nextBoolean();
  1. 關閉Scanner對象:
scanner.close();

完整示例:

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        System.out.print("請輸入一個字符串:");
        String inputString = scanner.next();
        System.out.println("輸入的字符串為:" + inputString);

        System.out.print("請輸入一個整數:");
        int inputInt = scanner.nextInt();
        System.out.println("輸入的整數為:" + inputInt);

        System.out.print("請輸入一個浮點數:");
        double inputDouble = scanner.nextDouble();
        System.out.println("輸入的浮點數為:" + inputDouble);

        System.out.print("請輸入一個布爾值(true/false):");
        boolean inputBoolean = scanner.nextBoolean();
        System.out.println("輸入的布爾值為:" + inputBoolean);

        scanner.close();
    }
}

注意事項:

  • 在使用nextInt()nextDouble()等方法獲取輸入后,如果還需要獲取字符串輸入,需要使用nextLine()方法來消費掉之前輸入的回車符。可以在調用nextLine()方法之前先調用scanner.nextLine()進行清空緩沖區。
int inputInt = scanner.nextInt();
scanner.nextLine();  // 清空緩沖區
String inputString = scanner.nextLine();

0
遵化市| 隆德县| 嘉定区| 道孚县| 大悟县| 贵溪市| 深泽县| 会宁县| 晋宁县| 望江县| 梅州市| 古浪县| 肥乡县| 义马市| 宜良县| 泽州县| 兴宁市| 张掖市| 安塞县| 镶黄旗| 竹溪县| 安岳县| 久治县| 新闻| 哈密市| 乌鲁木齐市| 津市市| 威海市| 阳信县| 永济市| 天津市| 博客| 德阳市| 武城县| 丰台区| 宕昌县| 英德市| 阜平县| 连平县| 喀什市| 辽阳市|