摘要: 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) 编辑
摘要: namespace for嵌套for五角星{ class Program { static void Main(string[] args) { while (true) { string a = "★";//注意换行与不换行的应用,如果要去掉对角线的话往上的话只要j<=i即可。 for (int ... 阅读全文
posted @ 2015-03-31 21:39 XCml 阅读(114) 评论(0) 推荐(0) 编辑
摘要: namespace 纸张的厚度循环{ class Program { static void Main(string[] args) { while (true) { double a; Console.WriteLine("请输入纸张的厚度:(毫米)"); a =Convert.ToDouble(... 阅读全文
posted @ 2015-03-31 19:03 XCml 阅读(123) 评论(0) 推荐(0) 编辑