求水仙花数

输入一个三位数,判断是否事一个水仙花数。水仙花数是指3位数的各位数字的立方和等于这个3位数本身。例如,153=1*1*1+5*5*5+3*3*3

#include < stdio.h >
#include
< conio.h >
void  main()
{
    
int  i,n,x1,x2,x3,sum;
    clrscr();
    
for (i = 100 ;i < 1000 ;i ++ )
    {
        n
= i;
        x1
= n % 10 ;
        x2
= n / 10 % 10 ;
        x3
= n / 100 ;
        sum
= x1 * x1 * x1 + x2 * x2 * x2 + x3 * x3 * x3;
        
if (sum == n)
              printf(
" %d is a shuixianhua number!\n " ,i);
        
    }
}

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