0

Java を学習して 2 日目です。単純な推測ゲームを作成しました。このゲームでは、「魔法の言葉」を推測する必要がありますが、実行するたびに、正しい単語を入力すると、常に「間違っています! '。

どんな助けでも大歓迎です。

package textpac;
import javax.swing.JOptionPane;
public class textclass {

public static void main(String[] args) {
    String inputText = JOptionPane.showInputDialog("What is the magic word?");
    String outputText = null;
    if (inputText == "themagicword"){
        outputText = "Well done!";
    } 
    if (inputText != "themagicword"){
        outputText = "Wrong!";
    }
    JOptionPane.showMessageDialog(null, outputText);
}
}
4

1 に答える 1