给用Java的开一下荒土 摘要:解题思路:先倒叙,后数组,再转成int进行相加注意事项:参考代码:import java.util.Scanner; public class Main { public static vo…… 题解列表 2023年04月04日 0 点赞 0 评论 146 浏览 评分:0.0
2841: 大整数加法 忽略前导0 摘要:## 大整数加法 ```c++ #include #include using namespace std; vector add(vectora,vectorb){ if(a.s…… 题解列表 2023年07月22日 0 点赞 0 评论 130 浏览 评分:0.0
详细解释 2841: 大整数加法 摘要:## 高精度加 会超出long long 运算类型的运算使用传统的方法无法计算 此时此刻就需要使用高精度运算进行这种大整数的运算 ```c++ string s1,s2; cin…… 题解列表 2024年11月04日 0 点赞 0 评论 77 浏览 评分:0.0
3行:万花丛中过,片叶不沾身 摘要:```python a=int(input()) b=int(input()) print(a+b) ``` 因为我也曾经站在门外 女孩 我的故事因为你而展开 。。。。。。。 。。。…… 题解列表 2024年08月01日 0 点赞 0 评论 165 浏览 评分:0.0
编写题解 2841: 大整数加法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int maxmine = 210; int a[maxmine…… 题解列表 2023年02月02日 0 点赞 0 评论 169 浏览 评分:0.0
大整数加法(C++) 摘要://大整数加法#include <bits/stdc++.h>using namespace std;int na[1005], nb[1005];string add(string a, strin…… 题解列表 2024年02月04日 0 点赞 0 评论 77 浏览 评分:0.0
vector存储写法,易懂 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;vector{ if(A.size()<B.size())return add(B,A); …… 题解列表 2023年04月26日 0 点赞 0 评论 130 浏览 评分:0.0
2841: 大整数加法 摘要:参考代码:x = int(input()) y = int(input()) print(x + y)…… 题解列表 2024年03月21日 0 点赞 0 评论 127 浏览 评分:0.0
详细解释我的代码这么写的原因 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//因为我下面有用strlen( )函数,所以需要用头文件“#include<string.h>”/…… 题解列表 2024年11月23日 1 点赞 0 评论 99 浏览 评分:0.0
使用vector数组,能避免输出前导0 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<string>using namespace std;const int N=1e5…… 题解列表 2023年11月09日 0 点赞 0 评论 62 浏览 评分:0.0