次のコードがあり、後で if/else ステートメントでユーザーが入力した入力を使用しようとしています。
String userGuess = JOptionPane.showInputDialog("The first card is "
+ firstCard + ". Will the next card be higher, lower or equal?");
このコードが含まれている if/else ステートメントの外で、入力された単語、つまり「higher」、「lower」、または「equal」をどのように使用できますか? 彼らの答えが必要なコードは次のとおりです。
if (userGuess == "higher" && nextCard > firstCard)
{
String userGuess = JOptionPane.showInputDialog(null, "Correct! The current card is a "
+ nextCard + ". Will the next card be higher, lower or equal?");
correctGuesses++;
}
編集:助けてくれてありがとう、私はそれを理解しました!