home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1994-01-30 | 534 b | 12 lines |
- 10 ' RECHKBK - v. 1.001 - 1/30/94 - Ira F. Kavaler
- 20 CLS: INPUT "What is the last balance on your statement";B: TD=0
- 30 INPUT "Enter the amount of any one outstanding deposit or 0 if none/no more";D
- 40 IF D>0 THEN TD=TD+D: GOTO 30
- 50 S1=B-TD: INPUT "Enter the number of outstanding checks";QC: TC=0
- 60 IF QC=0 THEN 80
- 65 FOR I=1 TO QC: INPUT "Enter one outstanding check";C
- 70 TC=TC+C: NEXT I
- 80 S2=S1-TC: INPUT "Enter any total sevice charges";SC
- 90 INPUT "Enter any earned interest";EI: T=S2-SC-EI
- 100 PRINT: PRINT "Your check book final balance should be";T: END
-