using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 水仙花数 { class Program { static void Main(string[] args) { int i,a,b,c; for (i = 100; i <1000; i++) { a=i%10; b=i/10%10; c=i/100; if(a*a*a+b*b*b+c*c*c==i) Console.WriteLine(i); } } } } /*运行结果 153 370 371 407 */