题解列表
蓝桥杯基础练习VIP-高精度加法C++实现
摘要:# 高精度加法模板
```c++
#include
#include
using namespace std;
vectoradd(vector&A,vectorB){
if(……
大整数减法,C++实现
摘要:# 大数减法模板
```c++
#include
#include
using namespace std;
bool cmp(vector &A, vector &B)
{
……
2841: 大整数加法 忽略前导0
摘要:## 大整数加法
```c++
#include
#include
using namespace std;
vector add(vectora,vectorb){
if(a.s……
2880: 计算鞍点
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[1005][1005];int main(){ fo……
2836: 数组逆序重放(C语言)
摘要:###第一种
#include
int main()
{
int n;
scanf("%d",&n);
int a[n];
for(int i=0;i=0;i-……
[编程基础]输入输出练习之浮点数专题
摘要:```c
#include
int main()
{
double a;
scanf("%lf",&a);
printf("%f\n%.5f\n%e\n%g",a,a,a,a)……
1852: 求1+2+3+...+n的值
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long sum(long long n){ long long ……
2247: 蓝桥杯算法提高-输出三个整数的最大数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long mymax(long long x,long long y,l……
2955: 判决素数个数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long sushu(long long x){ if(x<2) ……