用Java编程实现一个猜数字的游戏:系统随机产生一个1~100的数字,然后让玩家猜测这个数字,如果玩家猜错,
6个回答
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>猜数字游戏</title>
<script>
var count=0;
var y=parseInt(1000*Math.random());
for(var i=0; i<100;i++){
var s = window.prompt("请输入一个数字");
if (y > s) {
window.alert("小了");
count++;
}
else if (y < s) {
window.alert("大了");
count++;
}
else {
window.alert("对了");
break;
}
}
document.write("共猜:"+count+"次");
</script>
</head>
<body>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>猜数字游戏</title>
<script>
var count=0;
var y=parseInt(1000*Math.random());
for(var i=0; i<100;i++){
var s = window.prompt("请输入一个数字");
if (y > s) {
window.alert("小了");
count++;
}
else if (y < s) {
window.alert("大了");
count++;
}
else {
window.alert("对了");
break;
}
}
document.write("共猜:"+count+"次");
</script>
</head>
<body>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询