摘要:
#include #include #include using namespace std; const int MAX_LEN = 1001, CARRY = 4, BASE = 10000; struct BigInt { private: int A[MAX_LEN]; int Len; public: void Clear() { memset(A, 0, si... 阅读全文
posted @ 2018-04-19 20:04
headboy2002
阅读(110)
评论(0)
推荐(0)