Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99035 | 郭筱芷 | K进制数转L进制数 | C++ | 解答错误 | 60 | 0 MS | 240 KB | 441 | 2023-08-21 16:24:53 |
#include<bits/stdc++.h> using namespace std; int a[21],i,j,p,n,q,s; int main(){ while(cin >>p>>n>>q){ j=21; while(n>0){ j=j-1; a[j]=n%10; n/=10; } s=0; for(int i=j;i<=20;++i){ s=s*p+a[i]; } j=21; while(s>0){ j-=1; a[j]=s%q; s/=q; } for(int i=j;i<=20;i++){ if(a[i]>9){ cout <<char(a[i]-10+'A'); }else{ cout <<a[i]; } } cout <<endl; } return 0; }