Computer Science, asked by arunsharmah4, 4 months ago

Write a program to import the principle amt., rate of interest and time and calculate the simple interest​

Answers

Answered by anindyaadhikari13
3

Question:-

Write a program to enter the principle amt., rate of interest and time and calculate the simple interest.

Program:-

This is written in Python.

p=float(input("Enter principal amount: "))

r=float(input("Enter the rate of interest: "))

t=float(input("Enter the time: "))

si=p*r*t/100

print("Simple Interest is: ",si)

Answered by FairyLight
15

Answer:

This is written in Python.

p=float(input("Enter principal Amount: "))

r=float(input("Enter the rate of Interest: "))

t=float(input("Enter the time: "))

si=p×r×t/100

print(Simple interest is: ",si)

Explanation:

Hope this answer will help you dear...

Similar questions