Programming 16–13
82E978~1.DOC TI-83 international English Bob Fedorisko Revised: 10/26/05 1:47 PM Printed: 10/27/05 3:02
PM Page 13 of 22
Lbl (label) and Goto (go to) are used together for branching.
Lbl specifies the label for a command. label can be one or two
characters (
A through Z, 0 through 99, or q).
Lbl label
Goto causes the program to branch to label when Goto is
encountered.
Goto label
Program Output
IS>( (increment and skip) adds 1 to variable. If the answer is >
value (which can be an expression), the next command is
skipped; if the answer is { value, the next command is executed.
variable cannot be a system variable.
:IS>(variable,value)
:
command (if answer value)
:command (if answer > value)
Program Output
Note: IS>( is not a looping instruction.
Lbl, Goto
IS>(