51Nod 1015 水仙花数

Posted kimsimple

tags:

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

 

 

#include <cmath>
#include "iostream"
using namespace std;
int main()
{
    int m;
    int a[10]={0};
    cin>>m;
    for(int i=m;;i++){
        int n=i,len=0,sum=0;
        while(n!=0)
        {
            len++;
            a[len]=n%10;
            n=n/10;
        }
        for(int j=1;j<=len;j++){
            sum+=pow(a[j],len);
        }
        if(sum==i){
            cout<<sum<<endl;
            break;
        }
    }
    return 0;
}

 

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

51Nod 1015 水仙花数

51Nod 1016 水仙花数 V2(组合数学,枚举打表法)

1015 水仙花数(枚举)

1015 水仙花数(水题)

51Nod1019题(逆序数)

51nod 1232:完美数