Write a python program to accept a principal amount , interest and rate and calculate the simple interest
Answers
Answered by
1
Answer:
The formula: (amount*time*rate)/100 is used to compute simple interest.
...
The program computes simple interest given the principle amount, rate and time.
Take in the values for principle amount, rate and time.
Using the formula, compute the simple interest.
Print the value for the computed interest.
Exit.
Similar questions