Write a program to find Compound Interest (Compounded Annually)(in Qbasic)
Answers
Answered by
6
CLS
PRINT TAB(100); "Compound Interest Finder by Md Athar Sharif"
INPUT "Principal :"; P
INPUT "Rate of Interest :"; R
INPUT "Time :"; T
A = P * (1 + (R / 100)) ^ T
CI = A - P
PRINT "The Amound for "; T; " Years at the rate of "; R; "% per annum is "; A; " and Compound Interest is "; CI
END
------------------------
Hope it Works
athar67:
Awesome Answer!!
Answered by
1
Answer:
REM Finding Compound Interest
CLS
INPUT "Principle : " ; P
INPUT "Rate of Interest : " ; R
INPUT "Time : " ; T
LET CI = P * ( ( 1 + R / 100 ) ^ T - 1 )
PRINT "Compound Interest = " ; CI
END
Similar questions