题解列表
完数的判断(嵌套循环)
摘要:解题思路:
这题不好做,至少对于我( ´・・)ノ(._.`),想到了用数组来存完数的因子,那就好多了
注意事项:
参考代码:
```c
#include
int main()
{……
无需结构体的做法(C语言)
摘要: #include
#include
int main()
{
int num;//投票人数(数据个数)
char color[1000][……
蓝桥杯算法训练VIP-整数平均值-题解(C语言代码)在VS验证过
摘要:解题思路:用常规for使得一组数输入在一行内注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>void qiuhe(int* p, ……
蓝桥杯算法训练VIP-数的统计 C++ map
摘要:# map 有序容器
```c++
#include
#include
#include
#include
using namespace std;
const int N = 1e5+……
1113: C语言考试练习题_保留字母
摘要:##题目1113: C语言考试练习题_保留字母
**解题思路:输入一个字符串,一个个判断是否为字母,如果符合条件就输出**
```cpp
#include
using namespace st……