标题:打印出100-999之间所有的”水仙花数”,所谓”水仙花数”是指一个三位数,其各位数字立方和等于该数本身。比方:153是一个”水仙花数”,因为153=1的三次方+5的三次方+3的三次方。 1.程序分析:使用for循环控制100-999个数,每个数分解出个位,十位,百位。
- class Program
- {
- static void Main(string[] args)
- {
- for (int num = 100; num <= 999; num++)
- {
- int i = num % 10; //取个位
- int j = (num / 10) % 10; //取十位
- int k = num / 100; //取百位
- if(i*i*i+j*j*j+k*k*k==num)
- {
- Console.WriteLine(num);
- }
- }
- Console.ReadKey();
- }
- }
复制代码
来源:https://www.cnblogs.com/chling/archive/2019/09/16/11525594.html |