我正在用NetBeans在java中進行問答遊戲。我爲我的所有問題和另一個數組列表列出了我的答案。我把它們都按順序排列(比如第一個是安大略省的首府......而第一個答案列表是多倫多。 ..所以他們都匹配了)在java中用於問答遊戲的問題和答案的2個列表問題
我做了它,以便它隨機生成一個問題......但現在我必須得到它匹配的答案....並檢查用戶的輸入是否匹配回答。這是我試過,但它不會工作:
String input = inputTextField.getText();
String output = "";
questions = answers -------> Those are the names of my 2 array lists
if (input = answers) {
output = "Congratulations";
}
else if (input != answers) {
output = "You got the question wrong";
}
**請幫助...也是我是初學者,謝謝:)
爲什麼不嘗試使用HashMap。它會比arraylist更容易。 –