编写题解 1017: [编程入门]完数的判断(未使用数组) 摘要:```c //完数的判断 #include int main(){ int n; scanf("%d", &n); for( int i=1; i…… 题解列表 2022年07月18日 0 点赞 0 评论 143 浏览 评分:9.9
完数的判断 摘要:解题思路:注意事项:参考了作者SuperJoker的代码,觉得能再优化点,把 i 改为 i/2;参考代码:i#include<bits/stdc++.h>using namespace std;in…… 题解列表 2022年06月09日 0 点赞 0 评论 115 浏览 评分:0.0
1017: [编程入门]完数的判断 摘要:#include<stdio.h> int ws(int x){ int sum=0,ls[10000],j=0; for(int i=1;i<=(x/2+1);i++){ …… 题解列表 2022年06月06日 0 点赞 0 评论 66 浏览 评分:0.0
完数的判断--详细注释版 摘要:解题思路:首先要理解什么是完数,然后使用双重循环,外层循环用来遍历N以内的所有数,内循环用来判断是不是因子,并将所有因子求和与本身对比,判断是否是完数注意事项:没次求完因子之和后记得将s清理以便于下一…… 题解列表 2022年05月25日 0 点赞 0 评论 125 浏览 评分:9.9
【vector容器】求解完数的判断 摘要:解题思路:void cheaknum(int n)//利用vector储存所有N以内每个数的因子,检查满足条件就打印注意事项:现在研究出来的完数均是偶数,所以先判断是否是偶数偷懒可以有效减少运算时间参…… 题解列表 2022年05月21日 0 点赞 2 评论 224 浏览 评分:9.9
用了C++中的vector数组 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;vector<int> arr;bool method1(in…… 题解列表 2022年05月13日 0 点赞 0 评论 125 浏览 评分:0.0
完数的判断 —c++写法 摘要:#include <iostream>#include<iomanip>using namespace std;int main(){ int n,b[100]; cin>>n; f…… 题解列表 2022年05月12日 0 点赞 0 评论 258 浏览 评分:9.9
1017: [编程入门]完数的判断 摘要:import java.io.*; import java.util.ArrayList; public class Main { public static BufferedRea…… 题解列表 2022年05月11日 0 点赞 0 评论 134 浏览 评分:0.0
[编程入门]完数的判断 摘要:解题思路:模拟注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N; cin>>N; for(int…… 题解列表 2022年05月10日 0 点赞 0 评论 90 浏览 评分:0.0
完数的判断 题解 摘要:解题思路:没什么好说的。直接看程序吧。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n,a[100005];int main()…… 题解列表 2022年05月06日 0 点赞 0 评论 93 浏览 评分:0.0