题解 1157: 亲和数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

亲和数c++语言

摘要:#include<iostream> using namespace std; int Yue(int n) { int sum = 0; for (int i = 1; i < n;……

1157: 亲和数(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin >> n; while(……

1157: 亲和数

摘要:```cpp #include using namespace std; int qhs(int x,int y){ int a=0,b=0; for(int i=1;i……

1157: 亲和数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll qinhe(ll x){    l……

题解 1157: 亲和数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll a[100000],b[10000……

1157: 亲和数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using  namespace std;int zys(int x){    int sum=0;    for(int……

亲和数(超简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int f(int n)       //求约数和 {     int i,s=0……

1157: 亲和数

摘要:```cpp #include #include using namespace std; int main() { int i,M,j,k; cin>>M; ……