摘要: // 剪子,包袱,锤.游戏 public void youxi() { Console.WriteLine("1代表剪刀。"); Console.WriteLine("2代表石头。"); Console.WriteLine("3代表布。"); Console.WriteLine("我出拳:"); i 阅读全文
posted @ 2016-03-15 21:59 万里冰封 阅读(112) 评论(0) 推荐(0) 编辑
摘要: //传值,函数调用之后,变量值不变; //传址,函数调用后,变量值发生改变返回给原变量; //例: public void juli(int a,out int b) { a=0; b=0; a++; b=a+2; } static void Main(string[] args) { Progra 阅读全文
posted @ 2016-03-15 21:20 万里冰封 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 冒泡语句: int[] a = new int[6] { 6, 3, 5, 8, 1, 12 }; for (int i = 0; i < 6 - 1; i++)//由小到大排序 { for (int j = i + 1; j < 6; j++) { int t; if (a[i] > a[j]) 阅读全文
posted @ 2016-03-13 16:20 万里冰封 阅读(98) 评论(0) 推荐(0) 编辑
摘要: //传值:四种方式 //1,没有返回值,没有输入值(没有返回值,不可以赋值) //2,没有返回值,有输入值 //3,有返回值,没有输入值(有返回值,必须赋值,且,需要输出语句才显示) //4,有返回值,有输入值 例题:求1+。。。+n的和。 四种方法: //1,没有返回值,没有输入值 /// <su 阅读全文
posted @ 2016-03-13 16:08 万里冰封 阅读(129) 评论(0) 推荐(0) 编辑
摘要: //输入身份证号,截取生日,输出 // //string t="12a3@126.com"; // string t="370405198001103810"; // int a, b, c; // a =int.Parse( t.Substring(6,4)); // b = int.Parse( 阅读全文
posted @ 2016-03-12 20:42 万里冰封 阅读(213) 评论(0) 推荐(0) 编辑
摘要: //输入年月,不正确重新输入 for (; ; ) { Console.WriteLine("输入年份:"); int year = int.Parse(Console.ReadLine()); if (year >= 0 && year <= 9999) { Console.WriteLine(" 阅读全文
posted @ 2016-03-11 15:52 万里冰封 阅读(179) 评论(0) 推荐(0) 编辑
摘要: //try//保护执行里面的代码段,若其中一句有错误,直接跳到catch执行 //{//不会管下面的内容 // int a = int.Parse(Console.ReadLine()); // Console.WriteLine("dui"); //} //catch//try中发现异常,直接执行 阅读全文
posted @ 2016-03-11 11:37 万里冰封 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ////循环for ////for (; ; )死循环 ////打印20遍你好 //for (int i = 1; i <= 20; i++) //{ // Console.WriteLine("你好"); //} //Console.ReadLine(); //Console.Write("请输入 阅读全文
posted @ 2016-03-10 14:57 万里冰封 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 重点:for语句 for( 初始条件;循环条件;状态改变) {循环体} //一个游戏,前20关是每一关的自身的分数 //21-30关, 每一关是10分; //31-40关,每一关20分; //41-49关,每一关30分; //50关,是100分 Console.Write("第多少关t= "); i 阅读全文
posted @ 2016-03-09 11:38 万里冰封 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 重点:switch 语句 switch语句本质上就是多选一,满足其中一个,跳出中断运行。 //选择快餐 Console.WriteLine("我的快餐选择:"); int x = int.Parse(Console.ReadLine()); switch (x) { case 1: Console. 阅读全文
posted @ 2016-03-08 22:04 万里冰封 阅读(147) 评论(0) 推荐(0) 编辑