问题是当我尝试拆分(.split“”)每个空格时我无法读取变量输入next()因为数组只得到我输入的前两个单词所以我必须使用keyboard.nextLine( )和分裂过程的工作方式应该工作,我得到数组中的所有单词,但问题是如果我使用nextLine()然后我必须创建另一个键盘对象来读取第一个变量(答案),这是我能在这里工作的唯一方法是代码
Scanner keyboard=new Scanner(System.in);
Scanner keyboard2=new Scanner(System.in);//just to make answer word
int answer=keyboard.nextInt();//if I don't use the keyboard2 here then the program will not work as it should work, but if I use next() instead of nextLine down there this will not be a problem but then the splitting part is a problem(this variable counts number of lines the program will have).
int current=1;
int left=0,right=0,forward=0,back=0;
for(int count=0;count<answer;count++,current++)
{
String input=keyboard.nextLine();
String array[]=input.split(" ");
for (int counter=0;counter<array.length;counter++)
{
if (array[counter].equalsIgnoreCase("left"))
{
left++;
}
else if (array[counter].equalsIgnoreCase("right"))
{
right++;
}
else if (array[counter].equalsIgnoreCase("forward"))
{
forward++;
}
else if (array[counter].equalsIgnoreCase("back"))
{
back++;
}
}
}
}
谢谢:)
答案 0 :(得分:11)
将keyboard.nextLine()
放在此行之后:
int answer=keyboard.nextInt();
这是在nextLine()
类的nextInt()
方法之后使用Scanner
方法时通常会发生的常见问题。
实际发生的情况是,当用户在int answer = keyboard.nextInt();
输入整数时,扫描仪将仅采用数字并保留换行符\n
。因此,您需要通过调用keyboard.nextLine();
来放弃该换行符,然后您可以毫无问题地调用String input = keyboard.nextLine();
。