题解 | #小乐乐与进制转换#
小乐乐与进制转换
https://www.nowcoder.com/practice/242eafef2a704c0ca130d563b7b3ee2d
#include <stdio.h> ////采用递归的方法输出6进制 void print(int x)//直接打印,不需要返回值 { if (x > 5)//如果输出的数大于5的话,就是>=6,那么进入递归 { print(x / 6); } printf("%d", x % 6);//递归完再打印 } int main() { int n = 0; scanf("%d", &n); print(n); return 0; }