标签: 递归

2 篇文章

thumbnail
进制转换
#include <bits/stdc++.h> using namespace std; string s="0123456789ABCDEF"; void solve(int x,int m) { // 递归 if(x/m) solve(x/m,m); cout<<s[x%m]; // 非递归 sta…