//b进制数转化为十进制数 int get(string s, int b){ int res = 0; //秦九韶算法 for(auto c: s) res = res * b + c - '0'; return res; }