After reading the integer and the newline character (which is just ignored), the readPosInt method tests the integer. If the integer is bigger than or equal to zero, then the readPosInt method returns the integer as result. If the integer is strictly less than zero, then the readPosInt method uses System.out.println to print the error message "Positive integers only!" to the user (use System.out.println for this, not System.err.println, otherwise you might hit a bug in Eclipse...), and then does the whole thing again (including printing again the string argument of the readPosInt method) to try to read an integer again (hint: just print the error message, and then the while loop you already have around the whole code will automatically do the whole thing again...)接上面的代码
时间: 2024-01-25 14:02:47 浏览: 167
getpar.rar_If...
这段代码可能是一个方法的实现,名为readPosInt。根据你的描述,这个方法读取用户输入的整数,如果这个整数为非负数,则直接返回这个整数;否则,向用户输出“Positive integers only!”的错误提示信息,然后重新读取整数。这个过程会一直重复,直到读取到一个非负整数为止。
以下是可能的readPosInt方法的实现:
```
public static int readPosInt(String prompt) {
Scanner scanner = new Scanner(System.in);
int num;
do {
System.out.print(prompt);
num = scanner.nextInt();
if (num < 0) {
System.out.println("Positive integers only!");
}
} while (num < 0);
return num;
}
```
注:这个实现假设用户输入的是合法的整数,如果用户输入非整数或超出int类型的取值范围,会抛出异常。为了让程序更健壮,可以加上对这些异常的处理。
阅读全文