码迷,mamicode.com
首页 > 其他好文 > 详细

计算100-1000以内的水仙花数

时间:2018-10-28 16:01:09      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:水仙花数   ==   nbsp   计算   ++   bsp   水仙花   console   i++   

for (int i = 100; i <=999; i++)
{
    int a = i / 100 % 10;
    int b = i / 10 % 10;
    int c = i % 10;

if (a * a * a + b * b * b + c * c * c == i)
{
    Console.WriteLine(i);
}

}

计算100-1000以内的水仙花数

标签:水仙花数   ==   nbsp   计算   ++   bsp   水仙花   console   i++   

原文地址:https://www.cnblogs.com/-Ellen/p/9865690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!