veronikaaa86

03. Vacation

Mar 27th, 2022
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. needed_money = float(input())
  2. init_money = float(input())
  3.  
  4. days_count = 0
  5. count_spend = 0
  6. total_money = init_money
  7. while total_money < needed_money:
  8. if count_spend == 5:
  9. break
  10. days_count += 1
  11. action = input()
  12. amount = float(input())
  13.  
  14. if action == "spend":
  15. count_spend += 1
  16. total_money = total_money - amount
  17. if total_money < 0:
  18. total_money = 0
  19. elif action == "save":
  20. count_spend = 0
  21. total_money = total_money + amount
  22.  
  23. if count_spend == 5:
  24. print("You can't save the money.")
  25. print(days_count)
  26. else:
  27. print(f"You saved the money for {days_count} days.")
Advertisement
Add Comment
Please, Sign In to add comment