解题思路:这个从小到大是从2开始的,1及以下的都不用暴力进去
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <string>
#include <iterator>
#include <vector>
#include <numeric>
#include <cmath>
#include <cstdlib>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include <string.h>
using namespace std;
int fun(int n){
int temp=n;
int sum=0;
while(n){
sum+=(n%10)*(n%10)*(n%10)*(n%10)*(n%10);
n/=10;
}
if(sum==temp){
return 1;
}
else{
return 0;
}
}
int main() {
for(int i=2;i<1000001;i++){
if(fun(i)==1){
cout<<i<<endl;
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:548 |
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1396 |
蛇行矩阵 (C语言代码)浏览:606 |
最小公倍数 (C语言代码)浏览:1105 |
1113题解浏览:823 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:524 |
1071题解浏览:584 |
Tom数 (C语言代码)浏览:598 |
生日日数 (C语言代码)浏览:1574 |
整数分类 oj上总是wrong answer浏览:687 |