

InterviewSolution
Saved Bookmarks
1. |
Write a program to calculate Compound Interest. |
Answer» <pre>p=float(input("enter the principle"))n=float(input("enter the time"))r=float(input("enter the rate"))C.I=p*1+r/100**nprint("the C.I :",C.I)</pre> | |