home *** CD-ROM | disk | FTP | other *** search
/ The CIA World Factbook 1992 / k3bimage.iso / sel / 04 / 0057 / interest.bas (.txt) < prev    next >
Encoding:
GW-BASIC  |  1991-12-02  |  256 b   |  5 lines

  1. 10  INPUT "Enter the amount of principle.",PRIN
  2. 20  INPUT "What is the interest rate(use decimal)";RATE
  3. 30  INTEREST=PRIN*RATE
  4. 40  PRINT "$";INTEREST;" on $";PRIN;"at";RATE;"%"
  5.