
Posted:
Sep 30, 2002 @ 3:39pm
by Guest
Why not add a for next loop as below;
for i = 1 to 1000
next i
increase the amount of times it will loop by increasing the 1000 value. Its not the most efficient way of coding but i dont know the ins and outs of programming on a casio calculator

Posted:
Sep 30, 2002 @ 3:40pm
by Michael Y
"stop" and "break" end the program, so they would actually do the opposite of what you want to do.
As said above, try a for loop. I don't know how it works on the casios, but on my TI-83+ it's:
For(X,1,500)
End
That will automatically run through that 500 times, effectively causing a stall.