Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
75453 | 张誉腾 | 十进制转R进制 | C++ | Accepted | 1 MS | 272 KB | 374 | 2024-05-26 18:04:06 |
#include<bits/stdc++.h> using namespace std; int main() { double n; cin>>n; int r; cin>>r; int z=n; double x=n-z; int b[32],cnt=0; while(z!=0) { int yu=z%r; b[cnt]=yu; cnt++; z/=r; } if(cnt==0) { cout<<0; } for(int i=cnt-1; i>=0; i--) { if(b[i]<10) { cout<<b[i]; } else { b[i]+=55; cout<<(char)b[i]; } } }