//#include <endian.h> #include<bits/stdc++.h> #include <iostream> using namespace std; // 既要做精度乘 也要做精度加 // bug 做乘法的时候,重新声明了BIgInt // bug 在做加运算时,少算了carr. struct BigInt { int len ; int d[1000] ; BigInt() { memset(d , 0 , 1000) ; len = 0 ; } BigInt(int a) { memset(d , 0 , 1000) ; len ...