Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168134 | 徐启善(C班) | K进制数转L进制数 | C++ | 解答错误 | 60 | 1 MS | 272 KB | 690 | 2024-08-19 22:56:07 |
#include <bits/stdc++.h> using namespace std; string jzzh(int n, int base) { if (n == 0) { return "0"; } string d = "0123456789ABCDEF"; string res; while (n > 0) { res += d[n % base]; n /= base; } reverse(res.begin(), res.end()); return res; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int k, n, l; while (cin >> k >> n >> l) { int jzs10 = 0; int base = 1; while (n > 0) { jzs10 += (n % 10) * base; base *= k; n /= 10; } cout << jzzh(jzs10, l) << '\n'; } return 0; }