Computer Science, asked by amruthashandraya70, 5 months ago

write a program to find the simple interest where the value of principle, time and rate of interest are entered by the user si =p*r*t/100 (9th standard method only) plz plz plz​

Answers

Answered by Mister360
1

Explanation:

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

Similar questions