美文网首页
贪心钞票问题

贪心钞票问题

作者: keaidelele | 来源:发表于2017-06-03 11:20 被阅读8次

    python 源码
    V是操作者自由输入,可换.
    n是每种钞票的个数

    m=[5000,2000,1000,500,200,100,50,20,10,5,2,1]
    V = 55000 #changeable
    def Pay(m,V):
        n=[0]*12
        R = V
        i = 0
        while R>0:
            if m[i] <= R:
                R-=m[i]
                n[i]+=1
            else:
                i+=1
        print n
    
    Pay(m,V)
    

    相关文章

      网友评论

          本文标题:贪心钞票问题

          本文链接:https://www.haomeiwen.com/subject/tlwpfxtx.html