我的意图是显示一个字母并让用户键入该字母,而在他们按下相应的键(无论是对还是错)之后,然后显示下一个键。目前,我只能在按下键然后按下回车键之后才能实现这一点,以便它完成scanner.next()方法。有什么方法可以自动输入回车键,以便我可以扫描字符字母,然后自动继续下一个随机生成的字符?让我知道是否需要对此进行澄清。
//some initialized code here
for(int i = 0; i < 5; i++)
{
int letterToDisplay = rand.nextInt(26)
System.out.printf("%s\r\n", letters[letterToDispaly]);
**String inputLetter = scanner.next();**
if(intputLetter.exquals(letters[letterToDisplay]))
{
letterCounter(letterToDisplay);
}
}
//some methods etc. here
谢谢,
凯尔 P。