水仙花数

Posted elephant-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了水仙花数相关的知识,希望对你有一定的参考价值。

题目链接: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 }

以上是关于水仙花数的主要内容,如果未能解决你的问题,请参考以下文章

VB编程水仙花数

c语言中,如何输出所有的水仙花数

C语言找出最大水仙花数(水仙花数是3位整数,且各位立方之和等于该数,如153就是水仙花数)

C语言编程输出所有的“水仙花数”。

C语言 水仙花数 编程题

如何判断一个数是水仙花数