编写题解 1513: 蓝桥杯算法提高VIP-大数加法(C语言--带注释)
摘要:解题思路:注意事项:参考代码:#include#include//比较大小函数 int max(int a,int b){ return a > b ? a : b;}int main()……
蓝桥杯算法提高VIP-大数加法-题解(C语言代码)
摘要:#include <stdio.h>
#include <string.h>
char a[1005],b[1005];
int i,j,l1,l2,sum=0,cou=0,c[1005];
……
蓝桥杯算法提高VIP-大数加法-题解(C++代码)string解答
摘要:此题严重卡 getchar()or gets()输入1.ch=getchar()输入记录字符参考代码:#include<bits/stdc++.h>
using namespace std;
in……
优质题解
蓝桥杯算法提高VIP-大数加法-题解(C语言代码) 字符数组保存大数
摘要:##核心思路:用数组保存大数
创建两个字符数组用以保存大数,大数的每一位以字符的形式保存在对应下标的数组元素里。
例如输入两个数据999和1,则arr1[1]=9,arr1[2]=9,arr1……
蓝桥杯算法提高VIP-大数加法-题解(C语言代码)
摘要:### 思路:与高精度加法相同
```
#include
#include
char a[1005],b[1005];
int c[1005],d[1005],e[1005];
int m……
蓝桥杯算法提高VIP-大数加法-题解(C++代码)
摘要:```cpp
#include
#include
using namespace std;
int main(){
string s1,s2;
cin>>s1>>s2;
int……
蓝桥杯算法提高VIP-大数加法-题解(C语言代码)
摘要:解题思路:
一刷:[川哥的吩咐](https://blog.dotcpp.com/a/62422 "川哥的吩咐")
二刷碰到了这道题,重新整理了以下思路
本题就是高精度的加法,利用数组求和,进位……