码迷,mamicode.com
首页 > 其他好文 > 详细

练习 !!猜拳

时间:2015-11-03 10:31:47      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

int renying = 0;
int dnying = 0;

for (int i = 1; i <= 3; i++)
{
Random r = new Random();//生成随机数
int diannao = r.Next(3);//生成0-3之间,不包括3的数

Console.Write("请出拳:剪刀-0 石头-1 布-2 :");
int ren = int.Parse(Console.ReadLine());//控制台录入字符串,转换为int类型

Console.WriteLine("电脑出拳:{0}", diannao);
if (diannao - ren == -1 || ren - diannao == -2)//所有人赢的情况
{
renying++;
Console.WriteLine("恭喜你,你赢了");
}
else if (diannao == ren)
{
Console.WriteLine("平局");
}
else
{
dnying++;
Console.WriteLine("输了");
}
}

if (renying >= 2)
{
Console.WriteLine("三局两胜人赢了");
}

if (dnying >= 2)
{
Console.WriteLine("三局两胜电脑赢了");
}

 

练习 !!猜拳

标签:

原文地址:http://www.cnblogs.com/lz123/p/4932142.html

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