摘要: namespace index{ class Program { static void Main(string[] args) { while (true) { string s = "abcdefghijklmn"; int i = s.IndexOf("f"); // i是f在字符串s中的位置... 阅读全文
posted @ 2015-04-02 21:11 XCml 阅读(205) 评论(0) 推荐(0) 编辑
摘要: namespace yyyy_MM_dd_hh_mm{ class Program { static void Main(string[] args) { while (true){ try { Console.WriteLine("请输入您的出生年月日"); DateTime dt = Conve... 阅读全文
posted @ 2015-04-02 20:39 XCml 阅读(831) 评论(0) 推荐(0) 编辑
摘要: namespace 随机生成验证码{ class Program { static void Main(string[] args) { while (true) { string s = "abcdefghijklmnopqrstuvwxyz"; string t = "李青用强力的回旋踢击退地方... 阅读全文
posted @ 2015-04-02 20:21 XCml 阅读(195) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { Console.WriteLine("请输入一段英文:"); string s = Console.ReadLine(); int x = s.Length; //x代表字符的长度 for (int ... 阅读全文
posted @ 2015-04-02 19:35 XCml 阅读(105) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { Console.WriteLine("请输入您的年份"); int x = Convert.ToInt32(Console.ReadLine()); try { DateTime y = Conve... 阅读全文
posted @ 2015-04-02 19:31 XCml 阅读(131) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { string a; Console.WriteLine("请输入您的邮箱地址:"); a = Console.ReadLine(); if (a.Contains("@")&&a.Contains(".com"))//这句话的意思是... 阅读全文
posted @ 2015-04-02 19:28 XCml 阅读(255) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { DateTime dt = DateTime.Now; Console.WriteLine(dt); DateTime nz = Convert.ToDateTime("2015-4-2 17:00"); //将nz的时间转换为电... 阅读全文
posted @ 2015-04-02 19:25 XCml 阅读(127) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { string s = ""; s = "★\n★★\n★★★\n★★★★\n★★★★★"; Console.WriteLine(s); Console.ReadLine(); } 阅读全文
posted @ 2015-04-02 19:21 XCml 阅读(134) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { int y = 2; //过一个村庄丢一半零一只,过了7个村庄还是2只,求原来几只 for (int i = 1; i <=7; i++) { y = (y + 1) * 2; } Console.WriteLine(y); Con... 阅读全文
posted @ 2015-04-02 19:20 XCml 阅读(105) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { /* string x; Console.WriteLine("请随便输入:"); x= Console.ReadLine(); x=x.Trim();//前边的空格和后面的空格都去掉 Consol... 阅读全文
posted @ 2015-04-02 19:18 XCml 阅读(91) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int i=1; while (i<=100) { Console.WriteLine(i); i++; if (i==50) { Console.WriteLine("sdsa"); } c... 阅读全文
posted @ 2015-04-02 19:15 XCml 阅读(105) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { int n = 0; for (int x = 1; x*15 <=200; x++) {可能性*可能性*可能性=全部可能性,从中找出符合条件的就OK(if); for (int y = 1; y*3 <=200; y++) { f... 阅读全文
posted @ 2015-04-02 19:10 XCml 阅读(107) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { /*★ ★★ //最重要的就是找规律 i--行 ★★★ j--列 ★★★★ ★★★★★ */ /*string s = "★"; int n; Console.WriteLine("请输入一个数:... 阅读全文
posted @ 2015-04-02 19:08 XCml 阅读(205) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { try { Console.Write("请输入一个数:"); int n = Convert.ToInt32(Console.ReadLine()); int i = 1; int s = 0, z... 阅读全文
posted @ 2015-04-02 19:06 XCml 阅读(1161) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int n = 0; for (int g = 1; g*2 <=100; g++) { for (int m = 1; m*1 <=100; m++) { for (int x = 1; x*0.5... 阅读全文
posted @ 2015-04-02 19:05 XCml 阅读(123) 评论(0) 推荐(0) 编辑