Scanner sc = new Scanner(System.in);
if(sc.hasNextInt()){
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
这里的 hasNextInt() ,如果判断合法,为什么会自动赋值给 a 啊 ,而不是像 b 一样,得自己重新输入值