first programm and docs
This commit is contained in:
parent
a13c5145e6
commit
0f5432e74c
3
practica/math/README.md
Normal file
3
practica/math/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Math Programms
|
||||||
|
|
||||||
|
[Overmaymant.py](overmaymant.py) - calculate loan overpaymant.
|
11
practica/math/overpaymant.py
Normal file
11
practica/math/overpaymant.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
perv_vznos = input (" Введите сумму первоначального взноса " )
|
||||||
|
vznos = int(perv_vznos)
|
||||||
|
a = input (" Введите значение желаемой суммы кредита " )
|
||||||
|
b = input (" Введите процентную ставку по кредиту ")
|
||||||
|
c = input (" Введите кол-во лет по кредиту ")
|
||||||
|
a1 = int(a)
|
||||||
|
b1 = float(b)
|
||||||
|
c1 = int(c)
|
||||||
|
final_sum = (a1 - vznos) + ((a1 - vznos) / 100 * b1) * c1
|
||||||
|
print("Переплата составляет:")
|
||||||
|
print(final_sum)
|
Loading…
Reference in New Issue
Block a user