Computer Science, asked by shashikalag1581, 1 month ago

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 ritikasingh9940
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