gpt4 book ai didi

java - 修复 nextInt() 第二步的 java.util.InputMismatchException

转载 作者:行者123 更新时间:2023-11-30 12:08:50 24 4
gpt4 key购买 nike

<分区>

我正在编写一个非常简单的程序,我从用户那里得到 3 个整数,我想检查以确保它们都是整数,然后再将它们存储到单独的变量中进行处理。我使用的检查适用于第一个输入,但失败并在后两个输入上引发异常。

boolean properInt = scanner.hasNextInt();
int largest = Integer.MAX_VALUE;
boolean anError = false;


while(properInt=false){
anError=true;
System.out.println("Invalid number...whole numeric values only");
}

while(properInt =true){

int a= scanner.nextInt();
System.out.println("you entered "+ a);
int b = scanner.nextInt();
System.out.println("you entered "+ b);
int c= scanner.nextInt();
System.out.println("you entered "+ c);

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com