题解 1157: 亲和数

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

筛选

亲和数题解

摘要:解题思路:注意事项:参考代码:def qhs(n):    s=0    for i in range(1,n):        if n%i==0:            s+=i    retur……

1157: 亲和数m.

摘要:解题思路:注意事项:参考代码:package function; import java.util.Scanner; //题目 1157: 亲和数 public class t_1157 { ……

1157: 亲和数 递归写的

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

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

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

1157: 亲和数

摘要:解题思路:       ①在while 循环外 规定计数变量初值h,           在while循环内  将变量h++(每输入一次A,B),直至变量h>=M(结束输入A,B的值)       ②……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int a,int b);int main(){    int M,A,B;    scanf("%d",&M);    w……