C语言水仙花数

 “水仙花数”是指一个三位数其各位数字的立方和等于该数本身,例如153是“水仙花数”,因为:153 = 1 * 1 * 1 + 5 * 5 * 5 + 3 * 3 * 3。

对一个三位数取出他的每一位然后求立方和

#include <stdio.h>
int main()
{
    int hun, ten, ind, n;
    printf("水仙花数有:");
    for( n=100; n<1000; n++ ) 
    {
        hun = n / 100;
        ten = (n-hun*100) / 10;
        ind = n % 10;
        if(n == hun*hun*hun + ten*ten*ten + ind*ind*ind)
            printf("%d  ", n);
    }
    printf("\n");
   
    return 0;
}

C语言水仙花数

 

上一篇:C 练习实例13 - 水仙花数


下一篇:谭浩强C语言水仙花数是指一个N位正整数(N≥3),它的每个位上的数字的N次幂之和等于它本身。例如:153=1​3​​+5​3​​+3​3​​。 本题要求编写程序,计算所有N位水仙花数。