POJ 1220 http://poj.org/problem?id=1220
摘要:高精度之间的转换,利用模板即可,可以看的资料里面代码:#include <iostream>#include <cstdio>#include <cstring>using namespace std;char str[1000];;int newBase , oldBase;int start[1000] , ans[1000] , res[1000];int getNum(char c){ if(c >= '0' && c <= '9') return c-'0'; if(c &
阅读全文
posted @ 2012-06-21 15:56
浙公网安备 33010602011771号