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

水仙花数

时间:2018-04-06 18:43:13      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:lse   mes   class   else   http   水仙花数   3.2   while   ble   

题目链接:http://115.28.203.224/problem.php?cid=1010&pid=0

题目描述

判断一个数是否为"水仙花数",所谓"水仙花数"是指这样的一人数:其各位数字的立方和等于该数本身。例如:371是一个"水仙花数",371=3^3+7^3+1^3.

输入

一个三位数

输出

1或者0(1代表此数为水仙花数,0代表此数不是水仙花数)

样例输入

371

样例输出

1

1 #include
2 using namespace std;
3 int main()
4 {
5 int num;
6 while (cin>>num)
7 {
8 int a = num / 100;
9 int b = num / 10 % 10;
10 int c = num % 10;
11 int sum = aaa + bbb + ccc;
12 if (num == sum)
13 cout<<1<<endl;
14 else
15 cout<<0<<endl;
16 }
17 return 0;
18 }

水仙花数

标签:lse   mes   class   else   http   水仙花数   3.2   while   ble   

原文地址:https://www.cnblogs.com/Elephant-/p/8728259.html

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