蓝桥杯算法提高VIP-大数加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> // 个人认为最好理解的大数加法#include <string.h>int main(){ char a[1000], b[10…… 题解列表 2019年02月19日 0 点赞 0 评论 435 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (Java代码)2种方法解题 摘要:参考代码:方法1:把数存入数组里面逐位相加import java.util.Scanner; public class 大数相加 { public static void main(St…… 题解列表 2018年03月04日 0 点赞 0 评论 728 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法-题解(Java代码) 摘要:大数加法 题目非输入比long更大的数,所以用java中自带的BigInteger运算 ```java import java.math.BigInteger; import ja…… 题解列表 2020年02月22日 0 点赞 0 评论 327 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C++代码) (再写一种-.-) 摘要:#include "iostream" #include "cstdio" #include "algorithm" #include "cstring" using namespace st…… 题解列表 2018年08月02日 1 点赞 0 评论 987 浏览 评分:0.0
字符串数组做法 摘要:#include<stdio.h>#include<string.h>int main(){ char a[1000]; char b[1000]; char c[1000]; …… 题解列表 2022年03月22日 0 点赞 0 评论 145 浏览 评分:0.0
(模板 可直接记住)(C++代码) 摘要:高精度的算法基本上都是大同小异 可以算的上是一种模板题 这个模板我是从别的地方看到的 很方便,代码短并且很好理解 将读入进来的数字用字符串形式存储 再逆序转换成vector的形式 再进行加…… 题解列表 2019年08月15日 0 点赞 0 评论 565 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.math.BigDecimal;import java.util.Scanner;public class llq1{ public static…… 题解列表 2020年07月11日 0 点赞 0 评论 215 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C++代码)可AC 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> using namespace std; char a[1001],b[1001]; …… 题解列表 2018年08月12日 4 点赞 0 评论 595 浏览 评分:0.0
采用数组反序计算大数 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <vector>using namespace std;vector<int> …… 题解列表 2021年10月30日 0 点赞 0 评论 131 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法-题解(C++代码) 摘要:```cpp #include using namespace std; const int maxn = 1006; int a[maxn],b[maxn]; int main(…… 题解列表 2019年09月13日 0 点赞 0 评论 342 浏览 评分:0.0