Computer Science, asked by rajchoudhary28316, 4 months ago

Write a program to find the SI and Amount on a principal of Rs 5000.

when rate=10% and time =2years

SI=prt/100. Amount= Principal+SI​

Answers

Answered by shreyathakur55
1

CLS

LET P=5000

LET R=10

LET T=2

SI=P*T*R/100

PRINT SI

A=P+SI

PRINT A

END

This is a normal qbasic program... hope it helps

Similar questions