1234567章鱼君
【章某鱼的学习笔记】大数相加+大数相乘
本帖最后由 1234567章鱼君 于 2019-11-9 17:55 编辑
#include<bits/stdc++.h>
using namespace std;
const int MAX=1e4; //定义数字最大位数
char A[MAX+5],B[MAX+5]; //存放数
【查看更多内容请登录哈】
1234567章鱼君
1234567章鱼君
本帖最后由 1234567章鱼君 于 2019-11-9 17:59 编辑
大数相乘
#include<bits/stdc++.h>
using namespace std;
const int MAX=2e4;
char A[MAX+5],B[MAX+5];
int ans[MAX+
【查看更多内容请登录哈】
[查看全文]
1234567章鱼君