Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168025 | B班 李文乐 | K进制数转L进制数 | C++ | 解答错误 | 60 | 0 MS | 256 KB | 672 | 2024-08-19 21:53:17 |
#include <iostream> using namespace std; int td(int num, int base) { int res = 0; int pow = 1; while (num > 0) { res += (num % 10) * pow; num /= 10; pow *= base; } return res; } void tb(int dec, int baseL) { if (dec == 0) { cout << 0 << endl; return; } string s = ""; while (dec > 0) { int r = dec % baseL; s = (r < 10? char(r + '0') : char(r - 10 + 'A')) + s; dec /= baseL; } cout << s << endl; } int main() { int k, n, l; while (cin >> k >> n >> l) { int d = td(n, k); tb(d, l); } return 0; }