水仙花数

求出0〜999之间的所有“水仙花数”并输出。“水仙花数”是指一个三位数,其各位数字的立方和确好等于该数本身,如;153=1+5+3?,则153是一个“水仙花数”
在数论中,水仙花数(Narcissistic number)也称为自恋数、自幂数、阿姆斯壮数或阿姆斯特朗数(Armstrong number),是指一N位数,其各个数之N次方和等于该数。
例如153、370、371及407就是三位数的水仙花数,其各个数之立方和等于该数:
153 = 1^3 + 5^3 + 3^3。
370 = 3^3 + 7^3 + 0^3。
371 = 3^3 + 7^3 + 1^3。
407 = 4^3 + 0^3 + 7^3。

#include
#include
int main()
{
    int i = 0;
    int count = 0;
    for (; i < 1000; i++)
    {
        if (i < 10)
        {
            count = 1;
        }
        else if (i < 100)
        {
            count = 2;
        }
        else
        {
            count = 3;
        }

        int tmp = i;
        int sum = 0;
        while (tmp > 0)
        {
            sum += pow(tmp % 10, count);
            tmp /= 10;
        }
        if (sum == i)
        {
            printf("%d ", i);
        }
    }
    printf("\n");
    system("pause");
    return 0;
}

运行结果如下:
水仙花数_第1张图片

你可能感兴趣的:(水仙花数)