亲和数——一个数的因子和等于另一个数 摘要:解题思路:注意事项:前面那个数的因子和不包括它本身参考代码:def yzh(n): L = [1] for i in range(2,n): if n%i == 0: …… 题解列表 2023年03月19日 0 点赞 0 评论 70 浏览 评分:0.0
亲和数(水题) 摘要:```c #include long long f(int n){ long long i,sum=0; for(i=1;i…… 题解列表 2023年02月02日 0 点赞 0 评论 109 浏览 评分:0.0
1157 亲和数 利用函数解决 摘要:#include<stdio.h>#include<math.h>int fun(int n){ int i,a,b,c,m,sum=0; m=sqrt(n);//可提高效率 for(i=2;i<=…… 题解列表 2023年02月01日 0 点赞 0 评论 93 浏览 评分:9.9
1157:亲和数(c语言) 摘要:解题思路:先求出A,B的约数,加起来看看能不能分别和另一个数相等。注意事项:参考代码:#include <stdio.h> int main () { int M, A, B; …… 题解列表 2023年01月31日 0 点赞 0 评论 101 浏览 评分:9.9
菜鸟首次尝试(python)超简单解法 摘要:解题思路:注意事项:参考代码:n=int(input())for _ in range(n): x,y=map(int,input().split()) def realsum(n): …… 题解列表 2023年01月29日 0 点赞 0 评论 115 浏览 评分:8.0
亲和数(python代码) 摘要:def cal(x): total = 0 for i in range(1,x): if x%i==0: &nb 题解列表 2023年01月14日 0 点赞 2 评论 47 浏览 评分:0.0
亲和数(二维数组) 摘要:解题思路:利用函数求出所传值的各因子之和注意事项:参考代码:#include<stdio.h>int s(int n){ int sum=0; for(int i=1;i<n;…… 题解列表 2023年01月13日 0 点赞 0 评论 71 浏览 评分:0.0
编写题解 1157: 亲和数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int judge(int n,int m){ int i=0; int sum=0;…… 题解列表 2023年01月04日 0 点赞 0 评论 59 浏览 评分:0.0
优质题解 1157: 亲和数 摘要:##1157: 亲和数:tw-1f366: ######这道题很简单,我写的也很简单,看一眼就懂 ###题目描述 古希腊数学家毕达哥拉斯在自然数研究中发现,220的所有真约数(即不是自身的约数)…… 题解列表 2022年12月26日 0 点赞 3 评论 1186 浏览 评分:9.7
亲和数 简单直接的解答 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int M; scanf("%d", &M); while (M--) { int A, B; int sum…… 题解列表 2022年12月22日 0 点赞 0 评论 49 浏览 评分:9.9