我試圖讓做一個隨機數生成器生成的數字1到9之間的字符串,如果它產生的8,應該最後,然後顯示8停止生成。隨機數do-while循環與if語句
到目前爲止它打印1 2 3 4 5 6 7 8,但它不會生成隨機數字串,所以我需要知道如何使循環實際上生成隨機數字,如上所述,感謝任何幫助!
的Javascript
// 5. BONUS CHALLENGE: Write a while loop that builds a string of random
integers
// between 0 and 9. Stop building the string when the number 8 comes up.
// Be sure that 8 does print as the last character. The resulting string
// will be a random length.
print('5th Loop:');
text = '';
// Write 5th loop here:
function getRandomNumber(upper) {
var num = Math.floor(Math.random() * upper) + 1;
return num;
}
i = 0;
do {
i += 1;
if (i >= 9) {
break;
}
text += i + ' ';
} while (i <= 9);
print(text); // Should print something like `4 7 2 9 8 `, or `9 0 8 ` or `8
`.
'Math.ceil(的Math.random()* 7)+ 1'是你的朋友。 – tilz0R
你的邏輯看起來有缺陷的。 – ABcDexter