⽤c语⾔c++实现⽔仙花数的求解(附有详细代码)
⽔仙花数(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++)
exited{ 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
请按任意键继续. . .
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论