Computer Science, asked by Anonymous, 3 months ago

Write a program to display Simple Interest in qbasics

Answers

Answered by gajendradhami2005
3

Answer:

REM PROGRAM TO DISPLAY SIMPLE INTEREST

CLS

INPUT “ENTER PRINCIPAL”; P

INPUT “ENTER TIME”; T

INPUT “ENTER RATE”;R

I = P* T * R / 100

PRINT “SIMPLE INTEREST =”; I

Answered by ItZzMissKhushi
1

Answer:

Qbasic Program: Calculate Simple Interest

  1. Display simple interest. REM PROGRAM TO DISPLAY SIMPLE INTEREST. ...
  2. Input principal, rate, time and display total amount. ...
  3. Input principal, rate, time and display simple interest and total amount. ...
  4. Input amount, rate, time and display principal. ...
  5. Input simple interest, rate, time and display principal.

Explanation:

Similar questions