水仙花数:一个3位整数,其各位数字的立方和等于该整数本身。

已知水仙花数共4个,分别是:153,370,371,407.

水仙花数的计算题(数学知识水仙花数)(1)

用计算机程序求水仙花数:

#include<iostream>

#include<cmath>

using namespace std;

int main()

{

system("color B");

system("title 求水仙花数");

int i,j,k;

cout<<"水仙花数:";

for(i=1;i<=9;i )

for(j=0;j<=9;j )

for(k=0;k<=9;k )

if(100*i 10*j k==pow(i,3) pow(j,3) pow(k,3))

cout<<100*i 10*j k<<'\t';

else

continue;

system("pause>nul");

putchar(10);

return 0;

}

水仙花数的计算题(数学知识水仙花数)(2)

程序运行结果

,