<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
// 1、随机生成一个数字 1~10
function getRandom(N, M){
return Math.floor(Math.random() * (M - N + 1)) + N
}
let random = getRandom(1, 10)
console.log(random)
// 需要不断的循环
while(true){
// 2.用户输入一个值
let num = +prompt('请输入你猜的数字:')
// 3.判断输出
if(num > random){
alert('猜大了')
}else if(num < random){
alert('猜小了')
}else{
alert('猜对了')
break //退出循环
}
}
</script>
</body>
</html>
版权属于:
yu
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)