摘要: static void Main(string[] args) { while (true) { int x, y,z; string a, b,c; Random r=new Random();//这个是用的随机数随机生成,并且利用switch case赋予x,y,z成为"剪刀"石头""布""的含... 阅读全文
posted @ 2015-03-28 15:17 XCml 阅读(186) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { string a; Console.WriteLine("请问你有房吗:"); a = Console.ReadLine(); if (a == "有") { Console.WriteLine("请... 阅读全文
posted @ 2015-03-28 15:12 XCml 阅读(146) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { double x,y; Console.Write("请输入坐车的距离:"); x = Convert.ToDouble(Console.ReadLine()); if (x>0&&x 3 && x ... 阅读全文
posted @ 2015-03-28 13:33 XCml 阅读(268) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int m1 = 31; int m2 = 28; int m3 = 31; int m4 = 30; int m5 = 31; int m6 = 30; int m7 = 31; int m8 = 3... 阅读全文
posted @ 2015-03-27 21:14 XCml 阅读(456) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { string a; int b; Console.Write("请输入您的姓名:"); a = Console.ReadLine(); Console.Write("请输入您的分数:"); b = C... 阅读全文
posted @ 2015-03-27 21:10 XCml 阅读(519) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { Console.Write("请输入一个100以内的数:"); int a =Convert.ToInt32(Console.ReadLine()); if(a>10&&a0) { Console.W... 阅读全文
posted @ 2015-03-27 21:09 XCml 阅读(837) 评论(0) 推荐(0) 编辑
摘要: namespace 再练一遍猜拳2{ class Program { static void Main(string[] args)//首先先随机生成三个数,然后将0,1,2变成剪刀石头布,利用switch case达到,在比较的时候注意当x为0,y为2的时候,出x的获胜。即先判断这一句 x == ... 阅读全文
posted @ 2015-03-27 21:07 XCml 阅读(237) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int b; Console.WriteLine("请输入一个100以内的整数:"); b =Convert.ToInt32( Console.ReadLine()); if (b % 7 == 0)... 阅读全文
posted @ 2015-03-27 14:13 XCml 阅读(644) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { string xb; double sg, tz,m;: Console.Write("请输入您的性别:"); //利用逻辑运算符?:来测算体重,先判断性别。(?;)如果是男的话用100,女的话用11... 阅读全文
posted @ 2015-03-26 22:39 XCml 阅读(197) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { int a, b, c; while (true) { Console.WriteLine("请输入第一个数"); a = Convert.ToInt32(Console.ReadLine()); Console.WriteLin... 阅读全文
posted @ 2015-03-26 22:08 XCml 阅读(702) 评论(0) 推荐(0) 编辑