使用vector数组,能避免输出前导0 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<string>using namespace std;const int N=1e5…… 题解列表 2023年11月09日 0 点赞 0 评论 62 浏览 评分:0.0
大整数加法的双向链表写法 摘要:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> struct lennum{ int num; struct l…… 题解列表 2023年11月22日 0 点赞 0 评论 59 浏览 评分:6.0
大整数加法(C语言) 摘要:解题思路:定义两个字符串 s1 和 s2,用于存储输入的两个大整数。通过 scanf 从标准输入中读取两个字符串。计算两个字符串的长度 la 和 lb,以确定大整数的位数。初始化数组 a 和 b,用于…… 题解列表 2023年11月26日 0 点赞 0 评论 321 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main { public static…… 题解列表 2024年01月16日 0 点赞 0 评论 139 浏览 评分:9.9
参考一位前辈的 摘要:参考代码:#include<stdio.h> #include<string.h> char s1[201], s2[201]; int a[201], b[201], c[201]; i…… 题解列表 2024年01月16日 0 点赞 0 评论 178 浏览 评分:9.9
大整数加法(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
2841: 大整数加法python解法 摘要:解题思路:py可以直接处理大数注意事项:参考代码:a=int(input())b=int(input())print(a+b)…… 题解列表 2024年02月24日 0 点赞 0 评论 408 浏览 评分:9.9
2841: 大整数加法 摘要:参考代码:x = int(input()) y = int(input()) print(x + y)…… 题解列表 2024年03月21日 0 点赞 0 评论 127 浏览 评分:0.0
编写题解 2841: 大整数加法 摘要:解题思路:求出最长字符串的长度,相加时只需让相加之后的答案位数多一位因为相同长度的数字相加最大只会向前进一位,如9+9=18,99+99=198.最后只需判断第一位是否为,零为0不打印,反之,打印。注…… 题解列表 2024年04月19日 0 点赞 0 评论 142 浏览 评分:0.0
3行:万花丛中过,片叶不沾身 摘要:```python a=int(input()) b=int(input()) print(a+b) ``` 因为我也曾经站在门外 女孩 我的故事因为你而展开 。。。。。。。 。。。…… 题解列表 2024年08月01日 0 点赞 0 评论 165 浏览 评分:0.0