Computer Science, asked by ourphoto416, 1 month ago

write a program in qbasic:
a person has deposited Rs54600 in the bank for 5yrs. write a program to display simple interest it the bank pays simple interest at the rate of 7.5%

Answers

Answered by mukhesh13
0

Answer:

____is abranch of medicines that deals with disorders of the nervous system.

Answered by atrs7391
2

CLS

P = 54600

R  = 7.5

T  = 5

SI = (P*R*T)/100

PRINT "SIMPLE INTEREST  = ";SI

PRINT "FINAL AMOUNT = ";P+SI

Similar questions