45fan.com - 路饭网

搜索: 您的位置主页 > 手机频道 > 阅读资讯:如何计算水仙花数?

如何计算水仙花数?

2016-09-03 07:59:19 来源:www.45fan.com 【

如何计算水仙花数?

/*
有道题是输出所有的水仙花数,水仙花数是指一个3位数,
其各位数字的立方和等于该数本身。例如:153=1的3次方+5的3次方+3的3次方。
*/

#include <iostream>
#include <conio.h>

using namespace std;

#define TRIMP(x) (x)*(x)*(x)

int main()
{
cout<<"水仙花数有:"<<endl;

int b, c, d, tmp;
b = c = d = 0;
for(int n = 100; n<=999; ++n)
{
b = TRIMP(n/100);
c = TRIMP((n%100)/10);
d = TRIMP((n%100)%10);
tmp = b + c + d;
if(n == tmp)
cout << n << endl;
}

getch();
return 0;
}

 

本文地址:http://www.45fan.com/a/luyou/71625.html
Tags: 计算 输出 水仙花
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部