题解 1157: 亲和数

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

筛选

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

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

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#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);  ……

【亲和数】 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]ages) { ……

【亲和数】 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int pd(int n){ int i,s=0; for(i=1;i<n;i++) if……

亲和数(python代码)

摘要:def cal(x):     total = 0     for i in range(1,x):         if x%i==0:           &nb

亲和的解法

摘要:解题思路:注意事项:刚开始我做的代码是一组一组的吸收数据并得出结果,然后想到了利用数组的办法来收集结果并统一输出参考代码:#include <stdio.h>#include <stdlib.h>in……

【亲和数】 (C语言代码)记得点赞哦!

摘要:解题思路:(1)先求出a的约数,将他的约数累加,                (2)如果a的约数与b相等,着进行(1),否输出NO;                 &nb