Computer Science, asked by nishu5198, 17 days ago

.Write a program to compute simple interest​

Answers

Answered by sushant8a
0

This is a python Program to compute simple interest :

print(" Calculating Simple Interest ")

a=int(input(" Enter the Principle : ")

b=int(input(" Enter the Time : ")

c=int(input(" Enter the Rate : ")

print(" Your Answer : ",(a*b*c)/2 )

Mark my answer as brainliest...

Similar questions