Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
75463 杨莹斌 十进制转R进制 C++ Accepted 0 MS 272 KB 430 2024-05-26 18:16:58

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double n; cin >> n; int z = n; double x = n - z; int r; cin >> r; int b[32],cnt = 0; while(z != 0){ int yu = z%r; b[cnt] = yu; cnt++; z/=r; } if(cnt == 0){ cout << "0"; }else{ for(int i = cnt-1;i >=0;i--){ if(b[i]<10){ cout <<b[i]; }else{ b[i] += 55; cout << (char)b[i]; } } } return 0; }