Math, asked by allison7256, 1 year ago

Write a python program to compute simple interest and compound interest

Answers

Answered by madhvsingh06
6

Answer:

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

b = int(input("Enter the Rate:")) ;

c = int(input("Enter the Time:")) ;

d = (a*b*c)/100 ;

e = a(1+(b/100))**c ;

f = e - a ;

print("S.I. is :");

print(d);

print("C.I. is :");

print(f);

Similar questions