This commit is contained in:
2016-01-19 18:04:54 -05:00
parent 569c654e81
commit 78906952d5
20 changed files with 301 additions and 0 deletions

18
5-currency/README.md Normal file
View File

@ -0,0 +1,18 @@
Float to Currency
==================
Write a method that gives the number of American coins and bills needed to represent that number (rounded to the nearest 1/100, i.e. the nearest penny).
As an exmaple, if the float is `12.33`, the result would be `1 $10`, `2 $1 bills`, `1 quarter`, `1 nickel` and `3 pennies`.
Use the following as denominations for your currencies:
Penny: 1 cent
Nickel: 5 cent
Dime: 10 cent
Quarter: 25 cent
One-dollar bill
Five-dollar bill
Ten-dollar bill
Fifty-dollar bill
Hundred-dollar bill

2
5-currency/currency.py Normal file
View File

@ -0,0 +1,2 @@
def currency_converter(float):
pass