summaryrefslogtreecommitdiff
path: root/wk6/pset/sentimental-cash/cash.py
blob: 9433bcb4f15a9a6d2c5790278bd6405d905bb799 (plain)
1
2
3
4
5
6
7
8
9
from cs50 import get_float

while True:
    cents = get_float("Chnage: ")
    if cents > 0:
        break

quarters = (cents / 25).round()
cents =