Q. Write a program to calculate amount payable after simple interest.

 

Answer = 

 



p = float(input("Enter principal amount :-"))
r = float(input("Enter Rate :-"))
t = int(input("Enter time :-"))
si = (p * r * t ) /100
print("amount payable =" , si + p )



Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post