4-9最后一题水仙花数的答案
#include <stdio.h>
int main()
{
//定义三位数num,个位数sd,十位数td,百位数hd
int num, sd, td, hd;
//循环所有三位数
for( num=100 ; num<1000 ; num++ )
{
//获取三位数字num百位上的数字
hd = num/100 ;
//获取三位数字num十位上的数字
td = num/10%10 ;
//获取三位数字num个位上的数字
sd = num%10 ;
//水仙花数的条件是什么?
if( num==hd*hd*hd +td*td*td+sd*sd*sd )
{
printf("水仙花数字:%d\n", num);
}
}
return 0;
}
#include <stdio.h>
int main()
{
int num, a, b, c;//分别代表百位,十位,个位
for( num=100;num<=999;num++)
{
a =num/100 ;
b =(num-a*100)/10 ;
c =num-a*100-b*10 ;
if(num==a*a*a+b*b*b+c*c*c )
printf("水仙花数字:%d\n", num);
}
return 0;
}
最后结果是:
水仙花数字:153
水仙花数字:370
水仙花数字:371
水仙花数字:407