Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- x = float(input())
- k = float(input())
- n = int(input())
- s = x * (1+k/(12*100))**n
- profit = s - x
- print('%4d' % math.ceil(profit))
- #вывести результат
- # deposit - сумма вклада, interest_rate -процентная ставка,
- # amount_months - количество месяцев
- def compute_income(deposit, interest_rate, amount_months):
- # вычислить прибыль
- x = float(input())
- k = float(input())
- n = int(input())
- # вычислить прибыль с помощью функции
- s = x * (1+k/(12*100))**n
- profit = s - x
- print('%4d' % math.ceil(profit))
- return profit
- #вывести результат
Add Comment
Please, Sign In to add comment