eclipse を使用して、Java でブラック ジャックの簡略化されたバージョンを作成しようとしています。プレイヤーが「ヒット」または「スタンド」をタイプするようにしようとしています。
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ループをエスケープできません。数字を使えばうまくいくことはわかっていますが、単語を入力として使用する方法を本当に学びたいです。