PCCE 기출문제 4번 - 저축

PCCE 기출문제 4번 - 저축

프로그래머스 파이썬 - PCCE 기출문제 4번 - 저축

PCCE 기출문제 4번 - 저축

문제

[PCCE 기출문제] 4번 / 저축

풀이

start = int(input())
before = int(input())
after = int(input())

money = start
month = 1
while money < 70:
    money += before
    month += 1
while 70 <= money < 100:
    money += after
    month += 1

print(month)

현재 저장한 돈 money가 70이 넘으면 before를 저금해주고 월 month을 1월 추가준다.

저장한 돈이 70이상이고 100미만일 경우에는 after를 저금해주면 되고 마찬가지로 월 month을 1월 추가해주면 되는 간단한 문제다.


© 2021. All rights reserved.

Powered by Hydejack v9.1.6