所以我想根据用户输入将一定数量的任务添加到数组列表中,但是问题是循环不会停止询问每个任务的用户,而只会在最后一个任务停止,有人可以告诉我为什么它会跳过最后一个任务吗?
System.out.println("How many tasks would you like to add?");
int userInput = input.nextInt();
if (userInput>0) {
for (int i =1;i<=userInput;i++){
System.out.println("task #"+i);
String task =input.nextLine();
listOfTasks.add(task);
}
}