题解 1777: 循环练习之完美数判断

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

筛选

循环练习之完美数判断(简单C++)

摘要:解题思路:建议在外面写个函数进行因子求和,看的更加清晰注意事项:参考代码:#include<iostream> using namespace std; int f(int n) {     ……

1777: 循环练习之完美数判断

摘要:解题思路:1.运用循环来算因数的和 2.if语句判断相不相同在输出注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(……

循环练习之完美数判断

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

小问题 终成大错误

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

1777: 循环练习之完美数判断

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