水仙花数(Narcissistic number)也被称为超完全数字不变数(pluperfect digital invariant, PPDI)、自恋数、自幂数、阿姆斯壮数或阿姆斯特朗数(Armstrong number),水仙花数是指一个 3 位数,它的每个位上的数字的 3次幂之和等于它本身。例如:1^3 + 5^3+ 3^3 = 153。
代码如下:
#include<stdio.h>
int main()
{
int a,b,c;
int n;
for(n=2;n<1000;n++)
{ a = n%10;
b=(n/10)%10;
c=n/100;
if(a*a*a + b*b*b +c*c*c ==n )
{
printf("%d ",n);
}
}
return 0;
}
运行结果如下:
153 370 371 407
--------------------------------
Process exited after 4.397 seconds with return value 0
请按任意键继续. . .