Computer Science, asked by chenxiang, 8 months ago

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 Tejas1582
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 anindyaadhikari13
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