比赛 普及组水题赛(语言题赛) 评测结果 AAAAA
题目名称 水仙花数 最终得分 100
用户昵称 天一阁 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-10-14 17:49:14
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int n;
bool check(int x)
{
	while(n)
	{
		x-=(n%10)*(n%10)*(n%10);
		n/=10;
	}
	return !x;
}
int main()
{
	freopen("daff.in","r",stdin);
	freopen("daff.out","w",stdout);
	cin>>n;
	puts(check(n)? "TRUE":"FALSE");
	return 0;
}