Vitaliy_Novichikhin

2.1.5withError

Jun 2nd, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.72 KB | None | 0 0
  1. import math
  2. x = float(input())
  3. k = float(input())
  4.  
  5. n = int(input())
  6.  
  7. s = x * (1+k/(12*100))**n
  8. profit = s - x
  9. print('%4d' % math.ceil(profit))
  10.  
  11. #вывести результат
  12. # deposit - сумма вклада, interest_rate -процентная ставка,
  13. # amount_months - количество месяцев
  14. def compute_income(deposit, interest_rate, amount_months):
  15.     # вычислить прибыль
  16.  
  17.  
  18.      x = float(input())
  19.    
  20.     k = float(input())
  21.  
  22.      n = int(input())
  23.  
  24.  
  25. # вычислить прибыль с помощью функции
  26.  
  27.     s = x * (1+k/(12*100))**n
  28.     profit = s - x
  29.     print('%4d' % math.ceil(profit))
  30.  
  31. return profit
  32. #вывести результат
Add Comment
Please, Sign In to add comment