蓝桥杯算法提高VIP-大数加法 (Java代码)2种方法解题 摘要:参考代码:方法1:把数存入数组里面逐位相加import java.util.Scanner; public class 大数相加 { public static void main(St…… 题解列表 2018年03月04日 0 点赞 0 评论 728 浏览 评分:0.0
蓝桥杯算法提高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 "iostream" #include "cstdio" #include "algorithm" #include "cstring" using namespace st…… 题解列表 2018年08月02日 1 点赞 0 评论 987 浏览 评分:0.0
高精度加法 摘要:#include"bits/stdc++.h" using namespace std; int main(){ string a1,a2; int b1[20000],b2[…… 题解列表 2024年11月05日 0 点赞 0 评论 55 浏览 评分: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-大数加法-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string s1,s2; cin>>s1>>s2; int…… 题解列表 2020年02月05日 0 点赞 0 评论 292 浏览 评分: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
大数据使用数组存储 摘要:解题思路: 注意进位即可 注意事项:无 参考代码: #include <stdio.h> #include <string.h> const int N= 10001; int C[10…… 题解列表 2023年04月14日 0 点赞 0 评论 55 浏览 评分: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
蓝桥杯算法提高VIP-大数加法 (C++代码) 摘要:解题思路:深夜背模板真开心~有了对象还是要面向对象啊~我对象最好!注意事项:参考代码:#include <iostream> #include <algorithm> #include <stri…… 题解列表 2018年12月02日 0 点赞 0 评论 369 浏览 评分:0.0