小哥哥小姐姐快来看看
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Math.random()</title>
</head>
<body>
<script>
//补充代码
var input;
function newRandom(m,n){
return Math.floor(Math.random()*(m-n+1)+n)
}
var num=newRandom(1,10)
console.log(num)
while(input!=num){
input=prompt("请输入你猜测的数字")
}
alert("你猜对了")
</script>
</body>
</html>
9
收起
正在回答
1回答
同学你好,整体思路是正确的,建议优化:在while循环中添加判断,提示用户输入的数字是大了还是小了
如果我的回答帮助到了你,欢迎采纳,祝学习愉快~
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星