题解 1475: 蓝桥杯基础练习VIP-高精度加法

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

筛选

C# 高精度加法

摘要:解题思路: 逆序储存相加(是为了从个位开始相加,方便计算)(想一下 笔算 是不是从个位开始相加的),再逆序输出,long long存不下吗,用数组来做 注意事项: 逆序储存相加 ,逆序输出……

用vector巧解高精度问题

摘要:解题思路:注意事项:参考代码:#include<iostream>#include <vector> using namespace std;vector<int> add(vector <int> ……

高精度加法

摘要:```cpp #include using namespace std; vector add_num(vector&a, vector&b){ if(a.size() < b.si……

高精度加法

摘要:参考代码:#include <iostream> using namespace std; const int maxn = 1000; string x,y; int a[maxn],b……

高精度加法,vector

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;const int n = 1e6 + 10;vector<i……