day04_经典小游戏之“石头、剪刀、布”

//做一个剪刀石头布的对战小程序
import java.util.Scanner;
public class Work7{
public static void main(String[] args){
int computer = (int)(Math.random()*3) + 1;
int user;
do{
System.out.println("游戏规则:1:剪刀 2:石头 3:布   请出拳 1 -3之间");
Scanner input = new Scanner(System.in);
user = input.nextInt();

}while(user !=1 && user !=2 && user !=3);
  if(computer == user){
System.out.println("我们打平");
  }else if(((computer == 1) & (user != 3)) || ((computer == 2) & (user != 1)) ||((computer == 3) & (user != 2))){
System.out.println("厉害哦兄弟,你赢了");
  }else{
System.out.println("唉,输了,得加油兄弟!");
  }
System.out.println("电脑出:" + computer);
}

}

   若有不正之处,请多多谅解并欢迎批评指正。

 请尊重作者劳动成果,转载请标明原文链接:

 http://blog.csdn.net/weishimeng17


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值