Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
118377 沈梓珺 十进制转d进制 C++ 通过 100 0 MS 244 KB 266 2023-12-30 10:29:30

Tests(10/10):


#include<bits/stdc++.h> using namespace std; const string s="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; int x; void f(int n) { if(n/x==0) { cout<<s[n]; return; } f(n/x); cout<<s[n%x]; } int main() { int n; cin>>n>>x; f(n); return 0; }


测评信息: