·使用while循环逆序打印输出一个正整数每个数位上的数字(整数通过input键盘输入) num = int(input()) while num > 0: print(num % 10, end=" ") num = num // 10 结果即: