我正在尝试使用 eclipse 在 Java 中制作 Black Jack 的简化版本。我试图让玩家输入“击中”或“站立”,虽然他们没有,但它一直在提示他们这样做。
while (hitorstand != ("hit") || hitorstand != ("stand"))
{
System.out.println("Would you like to hit or stand?(1 for hit, 2 for stand)");
hitorstand = scan.nextLine();
hitorstand.toLowerCase();
}
if (hitorstand.equals("hit"))
{
playercard3 = random.nextInt(10) +2;
System.out.println(""+playercard3);
}
else if (hitorstand.equals("stand"))
{
System.out.println("You had a total value of " + playercardtotal + ".");
if (hiddendealercard == card2)
当我运行它时,无论我输入什么,它都无法逃脱 while 循环。我知道如果我使用数字会起作用,但我真的很想学习如何使用单词作为输入。