编写题解 1777: 循环练习之完美数判断 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b=1,sum=0; cin>>a; while (b<a)…… 题解列表 2024年02月14日 0 点赞 2 评论 45 浏览 评分:9.9
循环练习之完美数判断-题解(C语言代码) 摘要:原题链接:[循环练习之完美数判断](http://https://www.dotcpp.com/oj/problem.php?id=1777 "循环练习之完美数判断") ###### 解…… 题解列表 2019年06月20日 2 点赞 0 评论 908 浏览 评分:9.9
循环练习之完美数判断(简单C++) 摘要:解题思路:建议在外面写个函数进行因子求和,看的更加清晰注意事项:参考代码:#include<iostream> using namespace std; int f(int n) { …… 题解列表 2022年10月31日 0 点赞 0 评论 142 浏览 评分:9.9
1777: 循环练习之完美数判断 摘要:解题思路:1.运用循环来算因数的和 2.if语句判断相不相同在输出注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(…… 题解列表 2023年01月04日 0 点赞 0 评论 66 浏览 评分:9.9