C++高精度模板
摘要:
#include #include #include #include #include #define abs(a) ((a)>=0?(a):-(a)) using namespace std; class LargeInteger{public: LargeInteger(const char * s); LargeInteger(unsigned long long a = 0):negative(false) { if( a == 0 ) { v.resize(1); n = 0; ... 阅读全文
posted @ 2013-09-21 22:42 十指之间 阅读(413) 评论(0) 推荐(0) 编辑