Sales Tax Calculation

Date: 198x
Type: Program
Platform(s): TS 1000

Appears on

Assembled by Tim Ward from many sources. Contains programs 10122 – 10175.

Gallery

Sales Tax Calculation

Source Code

   5 REM SALES TAX CALCULATION
   6 PRINT TAB (10);"SALES TAX CALCULATION"
   8 PRINT 
  10 PRINT "ENTER SALE COST"
  20 INPUT S
  21 PRINT S
  25 PRINT 
  30 LET T=.0525
  40 LET X=S*T
  50 PRINT "SALES TAX IS $ ";X
  60 LET F=S+X
  65 PRINT 
  70 PRINT "TOTAL SALE IS $ ";F
  80 PRINT 
  90 PRINT "WANT ANOTHER? Y/N"
 100 INPUT Q$
 101 PRINT 
 110 IF Q$="Y" THEN GOTO 10
 120 IF Q$="N" THEN GOTO 130
 130 STOP 
 140 SAVE "1012%4"
 150 RUN 

People

No people associated with this content.

Scroll to Top