c#的三重循环查找水仙花数,但是结果闪退 int a,b,c=0,d; for (a=1;a>9 ;a++ ) { for (b = 9; b < 0; b--) { for (; ; ) { c = Convert.ToInt32(Console.ReadLine()); if (c < 0) { break; } Console.WriteLine(c); if (a * 100 + b * 10 + c == a * a * a + b * b * b + c * c * c) { d = a * 100 + b * 10 + c; Console.WriteLine("水仙花数为{0}", d); Console.ReadLine(); } Console.ReadLine(); } Console.ReadLine(); } Console.ReadLine(); } 尝试加了许多,console.readline();但是结果始终是闪退