我有一个例外NoSuchElementException
;
我的程序本身还没有完成,但是我无法弄清楚这个错误,我知道它很小 它与int输入有关。我不确定我是否缺少某些东西
int low= in.nextInt();
in.nextLine();
System.out.println(low);
int high= in.nextInt();
in.nextLine();
System.out.println(high);
int secretNum= in.nextInt();
in.nextLine();
System.out.println(secretNum);
int [] arr= new int [high];
答案 0 :(得分:0)
想通了,谢谢 System.out.println();在第一个之后 int low = in.nextInt(); 一切都好!