提交时间:2023-12-30 10:42:17
运行 ID: 118392
#include<bits/stdc++.h> using namespace std; const string R="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; int x; void tox(int n) { if(n/x==0) { cout<<R[n]; return; } tox(n/x); cout<<R[n%x]; } int main() { int n; cin>>n>>x; tox(n); return 0; }