题解列表
用筛法求之N内的素数
摘要:参考代码:#include<iostream>#include<math.h>using namespace std;int main() { int num,k,i; cin>>num; //暴力法……
蓝桥杯算法提高VIP-快速幂
摘要:基于二进制递归的解题思路#include<iostream>using namespace std;long long a,b;int p;long long pow_mod(long long a,……
编写题解 1025: [编程入门]数组插入处理(初始解题,包含数组、循环、判断)
摘要:# 原题链接
**[编程入门]数组插入处理 - C语言网 https://www.dotcpp.com/oj/problem1025.html。**
## 解题思路
**1、按照题……
编写题解 1085: A+B for Input-Output Practice (I)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF) { ……
编写题解 1086: A+B for Input-Output Practice (II)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a,b; cin>>n; ……
编写题解 1087: A+B for Input-Output Practice (III)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ ……