记录编号 |
62979 |
评测结果 |
AAAAA |
题目名称 |
水仙花数 |
最终得分 |
100 |
用户昵称 |
ch3coooh |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.001 s |
提交时间 |
2013-07-12 21:21:19 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<fstream>
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n,d,sum=0;
int a[100],i;
ifstream fin("daff.in");
ofstream fout("daff.out");
fin>>n;
d=n;
for(i=0;n>=10;i++)
{
a[i]=n%10;
n-=a[i];
n=n/10;
}
a[i]=n;
/*for(int m=0;m<=i;m++)
cout<<a[m]<<endl;*/
for(;i>=0;i--)
{
sum+=a[i]*a[i]*a[i];
}
//cout<<sum<<endl;
if(sum==d)
fout<<"TRUE"<<endl;
else
fout<<"FALSE"<<endl;
return 0;
}