码迷,mamicode.com
首页 > 其他好文 > 详细

NYOJ_34 水仙花数

时间:2015-05-17 13:45:28      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:编程   c++   nyoj   水仙花   

题目地址

看了最优答案真是无语,已经知道了水仙花数为什么还需要求呢?

技术分享

#include<iostream>
using namespace std;
int main()
{
	int n;
	cin>>n;//三位数 
	while(n!=0)
	{
		int a,b,c;
		a=n/100;
		b=n/10%10;
		c=n%10;
		if(a*a*a+b*b*b+c*c*c==n) cout<<"Yes"<<endl;
		else cout<<"No"<<endl;
		cin>>n;
	}
	return 0;
}



NYOJ_34 水仙花数

标签:编程   c++   nyoj   水仙花   

原文地址:http://blog.csdn.net/think_ycx/article/details/45788197

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!