#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; }
- 4 回答
- 0 关注
- 1754 浏览
添加回答
举报
0/150
提交
取消