0


python编写程序统计一元人民币换成一分、两分和五分的所有兑换方案个数(用while循环)

a = int(input("输入钱数(单位:元)"))
e=a100
count=0
i=-1
while i <(e//5+1):
i+=1
b=(e-5
i)//2+1
g=-1
while g<b:
g+=1
c=e-5i-g2+1
h=-1
while h<c:
h+=1
if 5i+g2+h==e:
count+=1
print(count)

标签: python

本文转载自: https://blog.csdn.net/qq_53944807/article/details/120872706
版权归原作者 nycSerendipity 所有, 如有侵权,请联系我们删除。

“python编写程序统计一元人民币换成一分、两分和五分的所有兑换方案个数(用while循环)”的评论:

还没有评论