题解 2841: 大整数加法

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

筛选

java--study||O.o

摘要:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main {   public static……

2841: 大整数加法

摘要:```cpp #include using namespace std; struct hp { int len; int s[1000]; }; void init(string……

现代语言就是省事

摘要:解题思路:python默认输入为字符串,所以可以用字符串的方式处理数据注意事项:(一)题干中说明数据输入前有0,所以需要将0删除后,再做运算              (二)python底层实现支持大……

大整数加法(C++)

摘要://大整数加法#include <bits/stdc++.h>using namespace std;int na[1005], nb[1005];string add(string a, strin……

详细解释 2841: 大整数加法

摘要:## 高精度加 会超出long long 运算类型的运算使用传统的方法无法计算 此时此刻就需要使用高精度运算进行这种大整数的运算 ```c++ string s1,s2; cin……

编写题解 2841: 大整数加法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int maxmine = 210;    int a[maxmine……