UNB/ CS/ David Bremner/ teaching/ cs2613/ books/ practical-python/ Solutions/ 1 5/ bounce.py
# bounce.py

height = 100
bounce = 1
while bounce <= 10:
    height = height * (3/5)
    print(bounce, round(height, 4))
    bounce += 1