Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99101 | 胡晏玮 | K进制数转L进制数 | C++ | 解答错误 | 40 | 0 MS | 264 KB | 517 | 2023-08-21 23:32:25 |
#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 arr[1000]; int i=0; while(cin >> arr[i].k >> arr[i].n >> arr[i].l){cout << change(arr[i++]);} return 0; }