Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
53488 littletwleve 转进制 C++ 通过 1 MS 252 KB 248 2024-10-23 15:55:36

Tests(2/2):


#include<bits/stdc++.h> using namespace std; string b="ABCDEF"; int m; void f(int x){ int d=x%m; if(x==0) return; f(x/m); if(d<10){ cout<<d; }else{ cout<<b[d-10]; } } int main(){ int n; cin>>n>>m; f(n); return 0; }


测评信息: