nextInt()
方法是Java中Scanner
类的一个方法,用于从输入流中读取下一个整数
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);
}
}
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);
}
}
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()
方法在循环中的使用场景非常广泛,可以用于读取用户输入、文件中的整数以及在循环中累加整数。