摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 struct BigInteger 5 { 6 static const int BASE = 100000000; //和WIDTH保持一致 7 static const int WIDTH = 8; //八位一存储,如修改记得修改输出中的%08d 8 bool sign; //符号, 0 阅读全文
posted @ 2019-11-30 11:22 Aptal丶 阅读(207) 评论(1) 推荐(0) 编辑