亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
彭山县| 安康市| 永胜县| 鹤庆县| 尖扎县| 柘城县| 婺源县| 上虞市| 汤阴县| 延长县| 奈曼旗| 平原县| 右玉县| 乐陵市| 巢湖市| 剑河县| 邵东县| 来宾市| 昌邑市| 囊谦县| 正定县| 额敏县| 彭州市| 赣州市| 吉林省| 赞皇县| 曲靖市| 新泰市| 喜德县| 龙门县| 海城市| 普宁市| 鄂托克前旗| 扶沟县| 巴里| 藁城市| 加查县| 遂昌县| 巧家县| 大石桥市| 获嘉县|