C语言,输出所有水仙花数,求思路指导。
C语言,输出所有水仙花数,求思路指导。
日期:2022-02-11 03:40:51 人气:1
先弄懂什么叫水仙花数。水仙花数就是一个三位数,它的个位十位和百位的数的立方加起来和还是这个数,就是水仙花数!
例如:153=1*1*1 + 5*5*5 + 3*3*3
你的想法。。。是对的~
源码:
#include <math.h>
#include <stdio.h>
int sxh(int i) {
if (((i
例如:153=1*1*1 + 5*5*5 + 3*3*3
你的想法。。。是对的~
源码:
#include <math.h>
#include <stdio.h>
int sxh(int i) {
if (((i