Simple TI-BASIC Guessing Game
I used to type this into people's calculators so they'd have something to do when in math class, and I got reminded of it so I figured I'd share my hard "work":
---
randInt(1,100)->Y
Lbl 1
Input X
If X=Y
Return
If X>Y
Disp "LOWER"
If X<Y
Disp "HIGHER"
Goto 1
---
If you want to run it you can try it online at [Cemetech's SourceCoder](
https://www.cemetech.net/sc/)
tags: misc