详细解释我的代码这么写的原因 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//因为我下面有用strlen( )函数,所以需要用头文件“#include<string.h>”/…… 题解列表 2024年11月23日 1 点赞 0 评论 99 浏览 评分:0.0
详细解释 2841: 大整数加法 摘要:## 高精度加 会超出long long 运算类型的运算使用传统的方法无法计算 此时此刻就需要使用高精度运算进行这种大整数的运算 ```c++ string s1,s2; cin…… 题解列表 2024年11月04日 0 点赞 0 评论 77 浏览 评分:0.0
2841: 大整数加法(超详细解答) 摘要:解题思路:写了很久,要注意前导0和十进制的运算注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[201]={&#…… 题解列表 2024年10月31日 0 点赞 0 评论 125 浏览 评分:9.9
写题解 2841: 大整数加法,字符串与整型数组之间的转化 摘要:解题思路:由于本题的输入为两个不超过200位的整数,int类型、long int类型以及long long int类型所支持的最大输入数并不能满足这类大整数之间的加法计算,基于以上背景,只能将输入整数…… 题解列表 2024年09月12日 0 点赞 0 评论 133 浏览 评分:9.9
大整数加法 摘要:解题思路:注意事项:参考代码:#include <stdlib.h> #include <stdio.h> #include <iostream> #include <string.h> us…… 题解列表 2024年08月15日 0 点赞 0 评论 95 浏览 评分:9.9
2841: 大整数加法 摘要:```cpp #include using namespace std; struct hp { int len; int s[1000]; }; void init(string…… 题解列表 2024年08月05日 0 点赞 0 评论 97 浏览 评分:9.9
3行:万花丛中过,片叶不沾身 摘要:```python a=int(input()) b=int(input()) print(a+b) ``` 因为我也曾经站在门外 女孩 我的故事因为你而展开 。。。。。。。 。。。…… 题解列表 2024年08月01日 0 点赞 0 评论 165 浏览 评分:0.0
编写题解 2841: 大整数加法 摘要:解题思路:求出最长字符串的长度,相加时只需让相加之后的答案位数多一位因为相同长度的数字相加最大只会向前进一位,如9+9=18,99+99=198.最后只需判断第一位是否为,零为0不打印,反之,打印。注…… 题解列表 2024年04月19日 0 点赞 0 评论 142 浏览 评分:0.0
2841: 大整数加法 摘要:参考代码:x = int(input()) y = int(input()) print(x + y)…… 题解列表 2024年03月21日 0 点赞 0 评论 127 浏览 评分:0.0
2841: 大整数加法python解法 摘要:解题思路:py可以直接处理大数注意事项:参考代码:a=int(input())b=int(input())print(a+b)…… 题解列表 2024年02月24日 0 点赞 0 评论 408 浏览 评分:9.9