编写题解 1475: 蓝桥杯基础练习VIP-高精度加法 摘要:#include<stdio.h> #include<string.h> int main(){ char a[1001]={0},b[1001]={0},a1[1001]={0},b1[10…… 题解列表 2024年11月08日 0 点赞 0 评论 66 浏览 评分:0.0
必备技法--高精加//vector数组版 + string版 摘要:# 高精度加法vector版 使用vevtor容器 容量可变的优势 模拟高精度 本模板无难点 需要注意 输出答案之前要 反转结果 ```cpp #include #inclu…… 题解列表 2024年09月13日 0 点赞 0 评论 97 浏览 评分:9.9
1475: 蓝桥杯基础练习VIP-高精度加法 摘要:解题思路:注意事项:参考代码:a = int(input()) b = int(input()) print(a + b)…… 题解列表 2024年04月10日 0 点赞 0 评论 105 浏览 评分:0.0
高精度加法 摘要:解题思路:将输入的两个字符串通过split("")转化为String数组,通过for循环逆序存入int类型数组中,然后遍历将二者相加组成c数组注意事项:确保数组长度一致,否则遍历的时候可能会数组越界异…… 题解列表 2024年03月14日 0 点赞 0 评论 104 浏览 评分:0.0
高精度加法:一句代码解决 摘要:解题思路:python自带高精度,就是数据处理用的参考代码:print(sum([int(input()) for _ in range(2)]))…… 题解列表 2024年02月20日 0 点赞 0 评论 160 浏览 评分:9.9
高精度加法(vector) c++ 简单易懂 摘要:#include <iostream> #include <vector> using namespace std; vector<int> add(vector<int> &x,vector<…… 题解列表 2023年10月04日 0 点赞 0 评论 73 浏览 评分:9.9
高精度加法 摘要:解题思路:通过都题目可以知道用普通的加法是解决不了的,整数类型的最大到21亿,即使使用 long long最大也不过2^64,所以要对100位的数进行加减操作的话要用到高精度加法。首先,通过字符串的方…… 题解列表 2023年10月01日 0 点赞 0 评论 108 浏览 评分:9.9
高精度加法,vector 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;const int n = 1e6 + 10;vector<i…… 题解列表 2023年09月20日 0 点赞 0 评论 81 浏览 评分:0.0
高精度加法 摘要:参考代码:#include <iostream> using namespace std; const int maxn = 1000; string x,y; int a[maxn],b…… 题解列表 2023年08月27日 0 点赞 0 评论 153 浏览 评分:0.0
高精度加法(vector) 摘要:#include<iostream>#include<vector>#include<cstring>using namespace std;vector<int>add(vector<int>&A,…… 题解列表 2023年07月24日 0 点赞 0 评论 97 浏览 评分:9.9