解题思路:
注意事项:sign是标记,当其值为0时表示没有水仙花数,输出no。a, b, c分别用来存储个位,十位,百位数字。
参考代码:
#include<stdio.h>
int main(void)
{
int m, n, temp, i;
int sign = 0;
int a, b, c;
while (scanf("%d %d", &m, &n) == 2)
{
for (i = m; i <= n; i++)
{
temp = i;
a = temp % 10;
temp = temp / 10;
b = temp % 10;
temp = temp / 10;
c = temp;
if (i == a*a*a + b*b*b + c*c*c)
{
printf("%d ", i);
sign = 1;
}
}
if (!sign)
printf("no\n");
}
return 0;
}
0.0分
0 人评分