码迷,mamicode.com
首页 > Web开发 > 详细

js回顾,用if语句,和switch语句来编写猜拳小游戏。

时间:2020-05-10 16:52:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:输出   语句   ons   随机   生成   case   OLE   efault   ||   

// 猜拳游戏
// 做一个跟计算机猜拳的小游戏。0-剪刀,1-石头,2-布
// 要求输出0,1,2,计算机生成随机数,与人类输入的相比较判断谁胜了。
// 随机数生成:var rom = parseInt(Math.random()*3);
var rom = parseInt(Math.random()*3);
var s = parseInt(prompt());
// if(rom-s==1 || rom-s==-2){
// console.log("赢")
// }else if(rom-s==2 || rom-s==-1){
// console.log(‘输‘)
// }else console.log(‘平‘);


var i =rom-s;
switch(i){
case 1:
console.log(‘赢‘);
break;
case -2:
console.log(‘赢‘);
break;
case 0:
console.log(‘平‘);
break;
default:
console.log(‘输‘);
}

js回顾,用if语句,和switch语句来编写猜拳小游戏。

标签:输出   语句   ons   随机   生成   case   OLE   efault   ||   

原文地址:https://www.cnblogs.com/1171899qq/p/12863688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!