100到999的水仙数(c#)
操作方法
- 01
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace for循环 { class Program { static void Main(string[] args) { /*****************100-999之间的 水仙数 ***************/ Console.WriteLine("100到999之间的水仙数有:"); for (int i = 100; i <= 999; i++) { int b = i / 100; int s = i % 100 / 10; int g = i - 100 * b - 10 * s; int sum = b*b*b +s*s*s+g*g*g; if (i == sum) { Console.Write("{0},",i); } } Console.ReadKey(); } } }
赞 (0)