gpt4 book ai didi

Javascript练习

转载 作者:行者123 更新时间:2023-11-30 14:06:34 24 4
gpt4 key购买 nike

我必须做一个 javascript 练习,我必须创建一个介于 0 和 100 之间的随机数,用户必须猜测,如果生成的数字更高或更低,程序将必须发出警告,并且必须计算所做的尝试。我在下面留下了对我有用的代码,但是警告如果数字更大或更少,最后会给我所有的代码,而不是一次一个,我无法计算尝试次数。谁能帮帮我?

var min=0; 
var max=10;
var tent = 0;
var random =Math.floor(Math.random() * (+max - +min)) + +min;
document.write("Numero : " + random);


document.write("<br>");
for (var i = 0;i < 10; i++){
var input = prompt("Indovina il numero" );
if (input < random){
document.write("Il valore è più grande <br>");
tent++;
} else if (input > random) {
document.write("Il valore è più piccolo <br>");
tent++;
} else {
document.write("Hai indovinato");
break;
}
}
console.log( tent );

最佳答案

您可以通过执行以下操作在提示和计数中包含文本:

var min=0; 
var max=10;
var tent = 0;
var text = "";
var random =Math.floor(Math.random() * (+max - +min)) + +min;
document.write("Numero : " + random);


document.write("<br>");
for (var i = 0;i < 10; i++){
var input = prompt("Indovina il numero. " + text + " Attempts: " + i);
if (input < random){
text = "Il valore è più grande"
document.write("Il valore è più grande <br>");
tent++;
} else if (input > random) {
text = "Il valore è più piccolo"
document.write("Il valore è più piccolo <br>");
tent++;
} else {
document.write("Hai indovinato");
break;
}
}
console.log( tent );

出现提示时文档不会写入。您还应该处理取消以停止循环,而不是移动到下一个并说您的猜测太低。

关于Javascript练习,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55265504/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com