Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99005 huatao1030 K进制数转L进制数 C++ 通过 100 0 MS 248 KB 620 2023-08-21 16:09:42

Tests(5/5):


#include<iostream> #include<stack> using namespace std; int main(){ int n,m; string s; long long h=0; while(cin>>n>>s>>m&&n!=EOF) { for(int i=0;i<s.size();i++){ if(s[i]>='0'&&s[i]<='9'){ h=h*n+s[i]-'0'; } else{ h=h*n+s[i]-'A'+10; } } stack <char>jz; while(h){ if(h%m>=10){ jz.push((h%m)-10+'A'); } else{ jz.push((h%m)+'0'); } h/=m; } while(!jz.empty()){ cout<<jz.top(); jz.pop(); } cout<<endl; } }


测评信息: