摘要: #include<iostream> #include<algorithm> using namespace std; int n;//进制定义为全局变量,方便后续使用; string convert(int x) { string rec; while(x){ if(x%n < 10) rec + 阅读全文
posted @ 2020-08-27 21:21 肉松松松松 阅读(207) 评论(0) 推荐(0)