write an algorithm to find simple interest (S I = P*R*T/100)
Answers
Answered by
16
Explanation:
Step 1: start the process
Step 2:input the values P, R and T
Step 3:Calculate the simple interest and store it in A
(A = PRT/100)
Step 4:print the value of A
Step 5:stop the process.
Answered by
10
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 PLEASE AND FOLLOW ME PLEASE
Similar questions