蓝桥杯算法提高VIP-大数加法 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"#define max 1000void reverse(int len, char a[]){ int i,t; …… 题解列表 2018年10月31日 0 点赞 0 评论 451 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法-题解(C++代码) 摘要:``` #include #include using namespace std; char a[1005]; char b[1005]; int c[1005]; in…… 题解列表 2020年06月20日 0 点赞 0 评论 359 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法-题解(C语言代码) 摘要:### 思路:与高精度加法相同 ``` #include #include char a[1005],b[1005]; int c[1005],d[1005],e[1005]; int m…… 题解列表 2020年02月27日 0 点赞 0 评论 264 浏览 评分:0.0
小南解题---大数加法---58ms 摘要:'''2022年03月10日 11:33:58.75zgn946 ''' a=int(input())b=int(input())print(a+b)…… 题解列表 2022年06月27日 0 点赞 0 评论 134 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法-两种方法题解(Java代码) 摘要:第一种:解题思路: 使用java中自带的BigInteger类型进行加减注意事项: 前头一定要记得import java.math.BigInteger;参考代码:import java.math…… 题解列表 2020年08月09日 0 点赞 2 评论 268 浏览 评分:0.0
花落的新手代码(C语言代码)~ 摘要:参考代码:#include<stdio.h> #include<string.h> #include<ctype.h> #include<stdlib.h> #include<math.h> …… 题解列表 2017年12月28日 0 点赞 0 评论 902 浏览 评分:0.0