题解 1157: 亲和数

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

筛选

1157: 亲和数 递归写的

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int yssum(int a,int b){ if (b >= a) { return 0; } ……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,a,b,n,sum1=0,sum2=0;    scanf("%d",&n);    whil……

1157题解(C语言)

摘要:```c #include // 函数 yue_shu 用于计算一个整数 n 的所有真约数(除了它本身)的和 int yue_shu(int n){ int sum = 0; //……

~~求亲和数~~

摘要: #include int main() { int m; scanf("%d",&m); while(m--)//循环……

c语言亲和数

摘要:#include int main() { int a; int m,n; scanf("%d",&a); for(int i=0;i……

亲和数题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int is_qhs(int a,int b){     int sum1=0;     int sum2=0;     for(int……

1157:亲和数

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>using namespace std;int f(int t){ int sum=1,k; for(……

亲和数(水题)

摘要:```c #include long long f(int n){ long long i,sum=0; for(i=1;i……