题解 2841: 大整数加法

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

筛选

编写题解 2841: 大整数加法

摘要:解题思路:求出最长字符串的长度,相加时只需让相加之后的答案位数多一位因为相同长度的数字相加最大只会向前进一位,如9+9=18,99+99=198.最后只需判断第一位是否为,零为0不打印,反之,打印。注……

给用Java的开一下荒土

摘要:解题思路:先倒叙,后数组,再转成int进行相加注意事项:参考代码:import java.util.Scanner; public class Main { public static vo……

详细解释 2841: 大整数加法

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

大整数加法(C++)

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

3行:万花丛中过,片叶不沾身

摘要:```python a=int(input()) b=int(input()) print(a+b) ``` 因为我也曾经站在门外 女孩 我的故事因为你而展开 。。。。。。。 。。。……

编写题解 2841: 大整数加法

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

vector存储写法,易懂

摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;vector{    if(A.size()<B.size())return add(B,A); ……