C++大数模板
摘要:
#include #include #include #include using namespace std; const int MAXN=10005; const int BASE=100000; const int LEN=5;//防止int溢出,最多基数最多设为5位 int max(int a,int b) { if(a>b) return a; ... 阅读全文
posted @ 2016-07-15 20:22 vCoders 阅读(225) 评论(0) 推荐(0) 编辑