write a program to enter the principle time rate calculate the simple interest and print the simple interest and amount
Answers
Answered by
1
Answer:
use printf() to display the message: "Enter Principle Amount, Rate %% per Annum and Time". Then the scanf() method is used which will take three values from the user and store it into variables - principal, rate and time.
Explanation:
Hmm plz follow me
Answered by
1
Answer:
Python
*P= 5000 #Principal Amount.
*R=15 #Rate.
*T=1 #Time.
*SI = (P*R*T)/100; # Simple Interest calculation.
*print("Simple Interest is :");
*print(SI); #prints Simple Interest.
please follow me...
Similar questions