题解 1122: C语言训练-亲密数

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

筛选

C语言训练-亲密数

摘要:解题思路: 哈希注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; const int N = 3e3 + 10;……

Hash映射求亲密数

摘要:# 哈希映射 ~~~ c++ int main() { int i ; int j ; int count = 0; int cmp ; int Hash[3001]{ 0 ……

C语言训练-亲密数(C++简短清晰)

摘要:写个求因数函数,在主函数里面调用会看的更清晰,不然主函数一堆for难看,仔细审题#include<iostream> using namespace std; int Sum(int n)    ……

C++ 代码演示 注意条件的过滤

摘要: 1. 要求因子和相等; 2. 要求亲密数不同; 3. 要求亲密数对唯一; 4. 要求亲密数对大的在后,小的在前; ``` #include #include #incl……