package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
while (true) {
System.out.println("*******************************");
System.out.println("--------欢迎进入猜拳游戏--------");
System.out.println("请出拳:(1是剪刀,2是石头,3是布)");
Scanner sc=new Scanner(System.in);
int person=sc.nextInt();
int computer=(int)(Math.random()*3)+1;
String per="用户";
String com = "电脑";
switch(person){
case 1:
per="剪刀";
break;
case 2:
per="石头";
break;
case 3:
per="布";
break;
}
switch(computer){
case 1:
com="剪刀";
break;
case 2:
com="石头";
break;
case 3:
com="布";
break;
}
if(person==1&&computer==3||person==2&&computer==1||person==3&&computer==2){
System.out.println("你出的是("+per+") 电脑出的是("+com+")");
System.out.println(" 【你输了!再来一次吧】");
//System.out.println();
}else if (person==computer){
System.out.println("你出的是("+per+") 电脑出的是("+com+")");
System.out.println(" 【平局!再来一次吧】");
// System.out.println();
}else{
System.out.println("你出的是("+per+") 电脑出的是("+com+")");
System.out.println(" 【恭喜你赢了!!!】");
System.out.println("【你终于战胜了电脑,游戏结束!】");;
break;
}
}
}
}
人机猜拳
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- C语言是面向过程的,而C++是面向对象的 C和C++的区别: C是一个结构化语言,它的重点在于算法和数据结构。C程...