python实现: # 对于任意钱数,求最少张数n = int(input(\"money: \")) # 输入钱数bills = [100, 50, 20, 10, 5, 2, 1] # 纸币面额种类total = 0for b in bi...