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

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

筛选

高精度加法

摘要:解题思路:通过都题目可以知道用普通的加法是解决不了的,整数类型的最大到21亿,即使使用 long long最大也不过2^64,所以要对100位的数进行加减操作的话要用到高精度加法。首先,通过字符串的方……

高精度加法,vector

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

高精度加法

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

高精度加法(vector)

摘要:#include<iostream>#include<vector>#include<cstring>using namespace std;vector<int>add(vector<int>&A,……

C# 高精度加法

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

用vector巧解高精度问题

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