#include <stdio.h>
int main()
{
//定义三位数num,个位数sd,十位数td,百位数hd
int num, sd,td, hd;
for(sd=0,td=0,hd=1 ; sd<10&&td<10&&hd<10 ;sd++,td++,hd++ )
{
num=hd*100+td*10+sd;
}
if( num==hd*hd*hd+td*td*td+sd*sd*sd )
{
printf("水仙花数字:%d\n", num);
}
return 0;
}
慕仰4014902
承诺疏影
相关分类