1 ) Write a program to calculate simple interest by entering the value of principle amount, rate of interest and time period.
*this question is for python
Answers
Answered by
2
Answer:
P = input("Enter principle amount")
R = input("Enter rate")
T = input("Enter Time Period")
SI = (P*T*R)/100
print("The simple interest is ",SI)
Answered by
5
Question:-
- Write a program in Python to calculate Simple Interest.
Program:-
p=float(input("Enter the principal: "))
r=float(input("Enter the rate: "))
t=float(input("Enter the time: "))
si=p*r*t//100
print("SI is: ",si)
Similar questions
Math,
5 months ago
Hindi,
5 months ago
Math,
5 months ago
Business Studies,
11 months ago
India Languages,
1 year ago
Social Sciences,
1 year ago