using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace MYTest
{
class Program
{
static void Main(string[] args)
{
/* Console.WriteLine("请输入判断年份:");
int x = Convert.ToInt32(Console.ReadLine());
if (x%400==0||(x % 4 == 0&&x%100!=0))
{
Console.WriteLine(x+"是闰年!");
}
else
{
Console.WriteLine(x + "不是闰年!");
}
*/
/*
Console.WriteLine("请输入三个数自动判断大小:");
int a, b, c, jg;
a = Convert.ToInt32(Console.ReadLine());
b = Convert.ToInt32(Console.ReadLine());
c = Convert.ToInt32(Console.ReadLine());
if (a>b&&a>c)
{
jg = a;
}
else if (b>a&&b>c)
{
jg = b;
}
else
{
jg = c;
}
Console.WriteLine("最大的数是" + jg);*/
/*
Console.WriteLine("请输入一个24以内的数:");
int a;
string zh;
a = Convert.ToInt32(Console.ReadLine());
if (a>12)
{
if (a==24)
{
zh = ("00AM");
}
else
{
zh = (a - 12)+"PM";
}
}
else
{
zh = a + "AM";
}
Console.WriteLine(zh);
*/
//Console.WriteLine("我们结婚吧");
//string a, b, c, jg = "无语。。。。";
//Console.WriteLine("女神问:“有房子么?”");
//a = Console.ReadLine();
//if (a == "有")//如果有房子我就问下一个问题
//{
// Console.WriteLine("女神问:“有车子么?”");
// b = Console.ReadLine();
// if (b == "有")//如果有车子我就问下一个问题
// {
// Console.WriteLine("女神问:“有票子么?”");
// c = Console.ReadLine();
// if (c == "有")//如果有票子。。。。。
// {
// jg = "我们结婚吧";
// }
// else//没有票子如何回答
// {
// jg = "抓紧赚钱吧";
// }
// }
// else//没有车子女神如何回答
// {
// jg = "抓紧买车吧,然后再说。";
// }
//}
//else//没有房子女神如何回答
//{
// jg = "连房子都没有,我就不往下问了。";
//}
//Console.WriteLine(jg);
//Console.ReadKey();
//Console.WriteLine("我们结婚吧");
//string a, b, c, jg="无语。。。。";
//Console.WriteLine("女神问:“有房子么?”");
//a = Console.ReadLine();
//switch (a)
//{
// case "有":
// Console.WriteLine("女神问:“有车子么?”");
// b = Console.ReadLine();
// switch (b)
// {
// case "有":
// Console.WriteLine("女神问:“有票子么?”");
// c = Console.ReadLine();
// switch (c)
// {
// case "有":
// jg = "我们结婚吧";
// break;
// case "无":
// jg = "抓紧赚钱吧";
// break;
// default:
// break;
// }
// break;
// case "无":
// jg = "等你有了车子再说吧";
// break;
// default:
// break;
// }
// break;
// case "无":
// jg = "房子都没有,别的我就不问了。。。。自己看着办吧。。。。。";
// break;
// default:
// break;
//}
// Console.WriteLine(jg);
// Console.ReadKey();
//int a;
//string x="";
//Console.WriteLine("请选择0-12之内的字");
//a=Convert.ToInt32( Console.ReadLine());
//switch (a)
//{
// case 0:
// x = "选择的是0";
// break;
// case 1:
// x = "选择的是1";
// break;
// case 2:
// x = "选择的是2";
// break;
// case 3:
// x = "选择的是3";
// break;
// case 4:
// x = "选择的是4";
// break;
// case 5:
// x = "选择的是5";
// break;
// case 6:
// x = "选择的是6";
// break;
// case 7:
// x = "选择的是7";
// break;
// case 8:
// x = "选择的是8";
// break;
// case 9:
// x = "选择的是9";
// break;
// case 10:
// x = "选择的是10";
// break;
// case 11:
// x = "选择的是11";
// break;
// case 12:
// x = "选择的是12";
// break;
// default:
// x = "选择的是默认";
// break;
//}
//Console.WriteLine(x);
//Console.ReadKey();
Random r = new Random();
string x,y;
int a=r.Next(0,3);
int b=r.Next(0,3);
switch (a)
{
case 0://剪刀
x = "剪刀";
break;
case 1://石头
x = "石头";
break;
case 2://布
x = "布";
break;
default:
x = "耍赖";
break;
}
switch (b)
{
case 0://剪刀
y = "剪刀";
break;
case 1://石头
y = "石头";
break;
case 2://布
y = "布";
break;
default:
y = "耍赖";
break;
}
Console.WriteLine("x出的是"+x);
Console.WriteLine("y出的是" + y);
string jg = "";
//if (a==b)
//{
// jg = "平局";
//}
//else if (a>b)
//{
// if (a==2&&b==0)
// {
// jg = "Y胜利";
// }
// else
// {
// jg = "X胜利!";
// }
//}
//else if (b>a)
//{
// if ((b==2&&a==0))
// {
// jg = "X胜利!";
// }
// else
// {
// jg = "Y胜利!";
// }
//}
if (a==b)
{
jg = "平局";
}
else if (a>b||(b==2&&a==0))
{
jg = "a胜利";
}
else if (b>a||(a==2&&b==0))
{
jg = "b胜利";
}
Console.WriteLine(jg);
Console.ReadKey();