题解 1513: 蓝桥杯算法提高VIP-大数加法

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

筛选

高精度加法

摘要:#include"bits/stdc++.h" using namespace std; int main(){     string a1,a2;     int b1[20000],b2[……

大数据使用数组存储

摘要:解题思路: 注意进位即可 注意事项:无 参考代码: #include <stdio.h> #include <string.h> const int N= 10001; int C[10……