1、 # 十进制转N进制:除N取余,余数集倒叙输出 while True: try: n = int(input()) mli = [] while(n != 0):  ...