Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
323988 | 毛泽锡 | 【C6-2】10进制转D进制 | C++ | 解答错误 | 0 | 1 MS | 256 KB | 499 | 2025-05-24 13:17:02 |
#include<bits/stdc++.h> using namespace std; string s; int main(){ long long n,a,t; cin>>n>>t; char c; if(n==0){ s="0"; } if(t==8){ while(n>0){ c=n%2+'0'; s=c+s; n=n/2; } if(n==0){ s="0"; } } if(t==16){ while(n>0){ a=n%16; if(a<10){ c=a+'0'; }else{ c=a+'A'-10; } s=c+s; n=n/16; } } if(t==8){ if(n==0){ s="0"; } while(n>0){ c=n%8+'0'; s=c+s; n=n/8; } } cout<<s; return 0; }