题解 2841: 大整数加法

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

筛选

编写题解 2841: 大整数加法

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

现代语言就是省事

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

java--study||O.o

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

2841: 大整数加法(超详细解答)

摘要:解题思路:写了很久,要注意前导0和十进制的运算注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char arr[201]={&#……

大整数加法

摘要:解题思路:注意事项:参考代码:#include <stdlib.h> #include <stdio.h> #include <iostream> #include <string.h> us……

2841: 大整数加法

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