#32808: string很好用


jasperlin0108@gmail.com (Jasper Lin)

學校 : 高雄市立高雄高級中學
編號 : 169403
來源 : [114.40.142.198]
最後登入時間 :
2023-10-05 16:52:06
a040. 阿姆斯壯數 | From: [101.9.37.21] | 發表日期 : 2022-11-09 14:33

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int st,en;
    bool b=true;
    cin>>st>>en;
    for(int i=st;i<=en;i++){
        int sum=0;
        for(int j=0;j<to_string(i).length();j++){
            sum+=pow((to_string(i)[j]-'0'),to_string(i).length());
        }
        if(sum==i){
            cout<<i<<" ";
            b=false;
        }
    }
    if(b){
        cout<<"none";
    }

}

 
ZeroJudge Forum