OFFSET
0,3
LINKS
US Treasury, Denominations of Coins
US Treasury, Denominations of Paper Currency
PROG
(Python)
def how_many(cents):
#d = denominations
d = ['$0.01', '$0.05', '$0.10', '$0.25',
'$1', '$5', '$10', '$20', '$50', '$100']
coins = {coin: 100*float(str(coin)[1:]) for coin in d}
how_many = {d[i]: 0 for i in range(10)}
while len(d) != 0:
how_many[d[-1]] = cents // coins[d[-1]]
cents %= coins[d[-1]]
d.pop()
return int(sum(how_many.values()))
CROSSREFS
KEYWORD
nonn
AUTHOR
Edward Minnix III, Nov 15 2015
EXTENSIONS
Edited by N. J. A. Sloane, Apr 24 2016
STATUS
approved