public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个整数");
while (true) {
try {
System.out.println("执行了");
/*String s= sc.nextLine();
int a = Integer.parseInt(s);*/
int a = sc.nextInt();
System.out.println(a);
break;
} catch (Exception e) {
System.out.println("输入错误,请重新输入");
}
}
为什么用nextLine可以,而用nextInt不行?
用nextInt会一直循环,显示“输入错误,请重新输入
执行了。。。。。” |
|