题解 1157: 亲和数

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

筛选

简单快速的亲和数

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

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

摘要:解题思路:   这个程序有点长,好处就是可以最后一口气输出所有结果。注意事项:参考代码:#include<stdio.h>#include <math.h>#include <string.h>#de……

1157题解(C语言)

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

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

摘要:解题思路:就是循环嵌套注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int a; int shu1,shu2; int i,j; ……