Code I made when I was bored
Posted: Thu Jan 08, 2026 11:10 am
This code generates random coordinates and a random number from 1 to 9 then pastes it in a random location on the home screen, eventually filling almost the entire thing. The only way to stop is to hit ON. This only works on a TI-83+ or with a calculator that has the same screen size.
Code: Select all
PROGRAM: EYYYY
:ClrHome
:While 1
:randInt(1,8)->A
:randInt(1,16)->B
:randInt(1,9)->C
:Output(A,B,C)
:End