Ответ:
s=float(input('введите сумму депозита: '))
p=float(input('введите процент депозита: '))/100+1
y=int(input('введите срок депозита: '))
print(f'через {y} лет вы получите {s*p**y:.2f}')
Объяснение:
def capitalization(principal, rate, time):
amount = principal * (1 + rate / 100) ** time
interest = amount - principal
return interest
principal = float(input("Введіть початкову суму: "))
rate = float(input("Введіть річну процентну ставку: "))
time = int(input("Введіть кількість років: "))
interest = capitalization(principal, rate, time)
print("Сума вкладу після", time, "років становитиме:", round(principal + interest, 2))
print("Сума відсотків становитиме:", round(interest, 2))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
s=float(input('введите сумму депозита: '))
p=float(input('введите процент депозита: '))/100+1
y=int(input('введите срок депозита: '))
print(f'через {y} лет вы получите {s*p**y:.2f}')
Объяснение:
def capitalization(principal, rate, time):
amount = principal * (1 + rate / 100) ** time
interest = amount - principal
return interest
principal = float(input("Введіть початкову суму: "))
rate = float(input("Введіть річну процентну ставку: "))
time = int(input("Введіть кількість років: "))
interest = capitalization(principal, rate, time)
print("Сума вкладу після", time, "років становитиме:", round(principal + interest, 2))
print("Сума відсотків становитиме:", round(interest, 2))