摘要: namespace 烧开水循环跳转{ class Program { static void Main(string[] args) { Console.ForegroundColor = ConsoleColor.Green; Console.Clear(); while (true) { st... 阅读全文
posted @ 2015-03-31 19:02 XCml 阅读(164) 评论(0) 推荐(0) 编辑
摘要: { class Program { static void Main(string[] args) { while (true) { int sum = 0; for (int i = 1; i 49 && a <= 100) { sum = sum + 10; Console.WriteLine... 阅读全文
posted @ 2015-03-31 19:01 XCml 阅读(114) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int ct=0,xt=0,yt=1,zt=1,m; Console.WriteLine("请输入月数:"); m = Convert.ToInt32(Console.ReadLine()); for... 阅读全文
posted @ 2015-03-31 19:00 XCml 阅读(119) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { while (true) { int a, b; int s = 0; Console.WriteLine("请输入第一个数:"); a = Convert.ToInt32(Console.Read... 阅读全文
posted @ 2015-03-31 18:58 XCml 阅读(133) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int a, b, c,m,n; Random r = new Random(); //主要的就是三位数的百分位最大不会同时取到四位数的百分位,也就是说c永远小于b; a = r.Next(1,10);... 阅读全文
posted @ 2015-03-30 22:39 XCml 阅读(159) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) //主要就是公式的运用和if else的嵌套 { string a, b = ""; double c, d, e,s,q; double m = 6.55 / 100 / 12; double n = 4... 阅读全文
posted @ 2015-03-30 22:30 XCml 阅读(117) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { while (true) { string a; Console.WriteLine("请问你有房吗:"); a = Console.ReadLine(); if (a == "有") { Cons... 阅读全文
posted @ 2015-03-29 13:56 XCml 阅读(122) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { while (true) { double i,s,a,b,c,d,e,f; Console.Write("请输入当月利润:"); i = Convert.ToDouble(Console.Read... 阅读全文
posted @ 2015-03-29 13:55 XCml 阅读(175) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { Console.ForegroundColor = ConsoleColor.Green; Console.Clear(); while (true) { Console.WriteLine("求方程式ax²+bx=c=0的根的情况... 阅读全文
posted @ 2015-03-28 15:21 XCml 阅读(322) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { while (true) { int a; Random r = new Random(); a = r.Next(0,24); Console.WriteLine(a); if (a >= 0 && a = 6 && a = 12... 阅读全文
posted @ 2015-03-28 15:20 XCml 阅读(673) 评论(0) 推荐(0) 编辑