home *** CD-ROM | disk | FTP | other *** search
- 5 l%=32000
- 6 h%=-32000
- 9 print "trailer==0, input one number at a time."
- 10 input a%
- 20 if a%==0 then goto 100
- 30 if a%<l% then goto 60
- 40 if a%>h% then goto 80
- 41 print"made it through l:";itoa(l%);"h:";itoa(h%);"a:";itoa(a%)
- 50 goto 10
- 60 l%=a%
- 61 print"a<l l:";itoa(l%);"h:";itoa(h%);"a:";itoa(a%)
- 70 goto 10
- 80 h%=a%
- 81 print"a>h l:";itoa(l%);"h:";itoa(h%);"a:";itoa(a%)
- 90 goto 10
- 100 print "low=";itoa(l%),"high=";itoa(h%)
- 110 end
-