题解 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……

N进制的加,C语言

摘要: #include #include #define N 10// 进制数 #define M '9'// 进制数 - 1 void reverse(char* c, int l, i……

字符串数组做法

摘要:#include<stdio.h>#include<string.h>int main(){    char a[1000];    char b[1000];    char c[1000];   ……

大数加法 C++ 模拟

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; const int MAX = 1010; ……

大数加法 (Java代码)

摘要:import java.math.BigInteger; import java.util.Scanner; public class Main { public static voi……

采用数组反序计算大数

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