题解 1157: 亲和数

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

筛选

最普通的解题方法

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

题解 1157: [亲和数]

摘要:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){    int n;    scanf("%d",&n);  ……

【亲和数】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, j, l, m, n, sum, sum1, hang; scanf("%d", &ha……

亲和数(水题)

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

【亲和数】 (C语言代码)

摘要:解题思路:  注意事项:参考代码:#include<stdio.h>int main(){    int n;    scanf("%d",&n);    while (n--)    {      ……

[亲和数]-题解(C语言代码)

摘要:解题思路:利用一个函数判断1个数的因子之和是否与另一个数相等注意事项:无参考代码:#include<stdio.h> int affinityNumber(int n,int m){ int s……