我是JS的新手。 我必須寫包含函數(循環,條件語句&運營商)是...比較運算符
詢問3個問題 - 那就是隻要我
給出兩次試圖正確地回答
- 保持共答對
- 只顯示總篩選
我只有這麼遠,如下所示。我現在完全卡住了。請幫助!
function capitalCity()
{
var answer1 = prompt("What is the capital of France?","");
var answer2 = prompt("what is the capital of Scotland?","");
var answer3 = prompt("what is the capital of Spain?","");
if (answer1 == "Paris" && answer2 == "Edinburgh" && answer3 == "Madrid")
{
alert("You have passed!");
}
else if (answer1 != "Paris" || answer2 != "Edinburgh" || answer3 != "Madrid")
{
alert("Have another go!");
capitalCity();
}
}
那麼,有什麼問題:只要你想,你可以使用盡可能多的問題?這是否工作?不行?你究竟在幹什麼? –
它不會跟蹤或運行兩次 – mplungjan
您是否期望某人爲您做某件事而不知道自己被卡住了?更加詳細一些。 –