题解 1475: 蓝桥杯基础练习VIP-高精度加法

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int max(int x, int y){ return x >= y ? x : y;}int main(){ char str1[……

高精度加法(vector)

摘要:#include<iostream>#include<vector>#include<cstring>using namespace std;vector<int>add(vector<int>&A,……

高精度加法

摘要:参考代码:#include <iostream> using namespace std; const int maxn = 1000; string x,y; int a[maxn],b……

高精度加法,vector

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;const int n = 1e6 + 10;vector<i……

高精度加法

摘要:解题思路:通过都题目可以知道用普通的加法是解决不了的,整数类型的最大到21亿,即使使用 long long最大也不过2^64,所以要对100位的数进行加减操作的话要用到高精度加法。首先,通过字符串的方……

高精度加法

摘要:解题思路:将输入的两个字符串通过split("")转化为String数组,通过for循环逆序存入int类型数组中,然后遍历将二者相加组成c数组注意事项:确保数组长度一致,否则遍历的时候可能会数组越界异……