)
Різними мовами
How many years do you need to put the amount of have in the bank to get the amount of UAH 1,000,000, if the bank has 7% per annum and the state imposes a tax of 19.5% on income
На сколько лет нужно положить сумму have в банк, чтобы получить сумму 1000000 грн, если банк начисляет 7% годовых, а государство накладывает налог 19,5% в доход
# сложный процент
bank = 7
state = 19.5
years = summ = 0
have = float(input())
while summ <= 1000000:
years += 1
summ = have * (1 + bank / 100 * (1 - state / 100)) ** years
print(years)
# простой процент
from math import ceil
bank = 7
state = 19.5
have = float(input())
per = have * bank / 100 * (1 - state / 100)
years = (1000000 - have) / per
print(ceil(years))
Объяснение: