1475: 蓝桥杯基础练习VIP-高精度加法 摘要:解题思路:注意事项:参考代码:a = int(input()) b = int(input()) print(a + b)…… 题解列表 2024年04月10日 0 点赞 0 评论 105 浏览 评分:0.0
必备技法--高精加//vector数组版 + string版 摘要:# 高精度加法vector版 使用vevtor容器 容量可变的优势 模拟高精度 本模板无难点 需要注意 输出答案之前要 反转结果 ```cpp #include #inclu…… 题解列表 2024年09月13日 0 点赞 0 评论 98 浏览 评分:9.9
编写题解 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
高精度加法(简单版) 摘要:解题思路:用数组用数组用数组(重要的事情说三遍)注意事项:注意进位和逆序输入输出参考代码:#include<stdio.h>#include<string…… 题解列表 2022年11月19日 0 点赞 0 评论 143 浏览 评分:9.9