当我运行此代码并且不输入整数时,我收到此错误,但它仍会打印"请输入一个整数"这件事真让我烦恼,我不得不缩进每行代码,即使我的缩进按钮没有工作,所以我不得不在每个代码上按空格四次。现在它要求我添加更多细节,所以在这里,你去...
错误:
Exception in thread "main" java.util.InputMismatchException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at Testing2.main(Testing2.java:22)
代码:
import java.util.Scanner;
public class Testing2 {
static Scanner userInput = new Scanner(System.in);
public static void main(String[] args) {
int RandomNum = (int) (Math.random() * 100);
System.out.println("Your random number is out of 100 is " + RandomNum + "!");
System.out.println("Please type another number");
if (!userInput.hasNextInt()) {
System.out.println("Enter an integer");
}
int numberEntered = userInput.nextInt();
int Numbered = RandomNum*numberEntered;
System.out.println(RandomNum + "*" + numberEntered + "=" + Numbered);
}
}
答案 0 :(得分:0)
正如Sotirious Delimanolis所说,我看不出你的任何目的。
除此之外,您的代码非常简单。我仍然不太明白你的问题。但是,如果您想要删除Exception,那么您需要确保输入的输入是整数类型。
Scanner抛出InputMismatchException以指示检索到的标记与预期类型的模式不匹配,或者标记超出预期类型的范围。
通常像nextInt()和hasNextInt()这样的方法首先跳过与分隔符模式匹配的任何输入,然后尝试返回下一个标记。
因此,请确保您处理该异常或尝试解析字符串,然后将其更改为整数或按照Bohemian的注释提取值。
希望这有助于您获得更好的清晰度。