Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99099 | 胡晏玮 | K进制数转L进制数 | C++ | 解答错误 | 40 | 0 MS | 256 KB | 471 | 2023-08-21 23:30:40 |
#include <iostream> #include <cmath> using namespace std; struct band{ int k,n,l; }; int B(int n,int b){ int s=0,t=0; while(n){ s += n%10*pow(b,t); t++; n /= 10; } return s; } string change(band x){ string n = ""; int s = B(x.n,x.k),tmp; while(s){ tmp = s%x.l; if(tmp>9) n=char(tmp+55)+n; else n=char(tmp+48)+n; s /= x.l; } return n; } int main(){ band x; cin >> x.k >> x.n >> x.l; cout << change(x); return 0; }