题解 2841: 大整数加法

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

筛选

2841: 大整数加法

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

大整数加法

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

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

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

详细解释 2841: 大整数加法

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

详细解释我的代码这么写的原因

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//因为我下面有用strlen( )函数,所以需要用头文件“#include<string.h>”/……