5. Write a program to find Simple interest (Si=ptr/100) SI- simple interest, p-principle, t-time, r-rate of interest
Answers
Answered by
3
Answer:
P = int (input ("enter the principal amount" ))
R = int (input ("enter the rate of interest" ))
T = int (input ("enter the time period" ))
SI = p × r× t / 100
totalamount payable = principal + SI
print ( " payable amount is ," TATAL AMT )
Explanation:
PLEASE MARK ME AS A BRAIN LIST
Similar questions