Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99041 胡晏玮 K进制数转L进制数 C++ 编译错误 0 0 MS 0 KB 472 2023-08-21 16:26:16

Tests(0/0):


#include <iostream> 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); else n+=char(tmp+48); } 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++]);} }


测评信息: