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

溫馨提示×

Java nextInt方法在循環中的使用場景

小樊
81
2024-11-19 22:21:00
欄目: 編程語言

nextInt()方法是Java中Scanner類的一個方法,用于從輸入流中讀取下一個整數

  1. 讀取用戶輸入:在需要獲取用戶輸入的整數時,可以使用nextInt()方法。例如,創建一個簡單的程序,要求用戶輸入兩個整數并計算它們的和。
import java.util.Scanner;

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

        System.out.print("Enter the first integer: ");
        int num1 = scanner.nextInt();

        System.out.print("Enter the second integer: ");
        int num2 = scanner.nextInt();

        int sum = num1 + num2;
        System.out.println("The sum of the two integers is: " + sum);
    }
}
  1. 讀取文件中的整數:如果你需要從一個文件中讀取整數,可以使用nextInt()方法。例如,假設你有一個包含整數的文本文件,你需要計算這些整數的總和。
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class SumOfIntegersFromFile {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(new File("integers.txt"));
        int sum = 0;

        while (scanner.hasNextInt()) {
            sum += scanner.nextInt();
        }

        System.out.println("The sum of the integers in the file is: " + sum);
    }
}
  1. 在循環中累加整數:如果你需要在循環中累加整數,可以使用nextInt()方法。例如,創建一個程序,要求用戶輸入一系列整數,并計算它們的總和。
import java.util.Scanner;

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

        System.out.println("Enter integers (enter -1 to stop):");

        while (true) {
            int num = scanner.nextInt();

            if (num == -1) {
                break;
            }

            sum += num;
        }

        System.out.println("The sum of the integers is: " + sum);
    }
}

總之,nextInt()方法在循環中的使用場景非常廣泛,可以用于讀取用戶輸入、文件中的整數以及在循環中累加整數。

0
灵丘县| 中江县| 南宫市| 抚州市| 湖口县| 青州市| 淳化县| 堆龙德庆县| 太原市| 丁青县| 垫江县| 瓦房店市| 乡城县| 喜德县| 兰州市| 巴彦淖尔市| 普定县| 米泉市| 永城市| 资阳市| 台中市| 仁布县| 甘洛县| 万宁市| 琼海市| 黄梅县| 临湘市| 怀化市| 石台县| 乐东| 亚东县| 广南县| 玉树县| 渭南市| 夏河县| 遂平县| 凤阳县| 顺义区| 宝鸡市| 德昌县| 广安市|