花落的新手代码(C语言代码)~ 摘要:参考代码:#include<stdio.h> #include<string.h> #include<ctype.h> #include<stdlib.h> #include<math.h> …… 题解列表 2017年12月28日 0 点赞 0 评论 902 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<cstring> #include<iostream> using namespace std; string…… 题解列表 2018年02月01日 1 点赞 0 评论 620 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int s[2000],aa[1001],bb[1001];char a[1001],b[1001]…… 题解列表 2018年02月08日 0 点赞 0 评论 696 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C++代码) 摘要:#include <iostream> #include <cstdlib> #include <cmath> #include <deque> #include <algorithm> #…… 题解列表 2018年02月12日 0 点赞 0 评论 1002 浏览 评分: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-大数加法 (C++代码) 摘要:#include "iostream" #include "algorithm" #include "string" using namespace std; string add(strin…… 题解列表 2018年07月28日 1 点赞 0 评论 548 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C++代码) (再写一种-.-) 摘要:#include "iostream" #include "cstdio" #include "algorithm" #include "cstring" using namespace st…… 题解列表 2018年08月02日 1 点赞 0 评论 987 浏览 评分: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<bits/stdc++.h> using namespace std; char a[1000]; char b[1000]; int ans[10000]; void f…… 题解列表 2018年10月26日 1 点赞 0 评论 449 浏览 评分:2.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