Tables and Reference Information   A-7
HORIZONTAL
 
Y
Draws a horizontal line at
alue 
Y
. 
(I)
2
 
F
 
DRAW
 
á
HORIZONTAL
â
7
-
5
IF
 
condition
:
commandA
 
:
commands
If 
condition
 = 0 (false),
skips 
commandA
. 
(I)
† 
K
 
CTL
 
á
IF
â
10
-
7
IF
 
condition
 
:THEN:
commands
 
:END
Executes 
commands
 from
THEN
 to 
END
 if 
condition
= 1 (true). 
(I)
† 
K
 
CTL
 
á
THEN
â
10
-
8
IF
 
condition
 
:THEN:
commands
 
:ELSE:
commands
 
:END
Executes 
commands
 from
THEN
 to 
ELSE
 if
condition
 = 1 (true); from
ELSE
 to 
END
 if 
condition
= 0 (false). 
(I)
† 
K
 
CTL
 
á
ELSE
â
10
-
8
INPUT
Displays the current graph
with the free-moving
cursor. 
(I)
† 
K
 
I/O
 
á
INPUT
â
10
-
11
INPUT
 
variable
Prompts for input to store
to 
variable
. 
(I)
† 
K
 
I/O
 
á
INPUT
â
10
-
12
INPUT
 
"
text
",
variable
Prompts using 
text
 and
stores input to 
variable
.
(I)
† 
K
 
I/O
 
á
INPUT
â
10
-
12
INT
 
value
Returns the largest integer 
 
value
. 
(F)
I
 
NUM
 
á
INT
â
2
-
10
INT
 
list
Returns the largest integer 
 
list
 element. 
(F)
I
 
NUM
 
á
INT
â
2
-
10
integerA
 
INT÷ 
integerB
Divides 
integerA
 by
integerB
 and returns a
quotient (
Q
) and
remainder (
R
) on the
Home screen, if there are
no pending operations. 
(F)
I
 
MATH
 
á
INT÷
â
2
-
7
listA
 
INT÷ 
listB
Returns a list of quotients
from 
listA
 and 
listB
. 
(F)
I
 
MATH
 
á
INT÷
â
2
-
7
list
 
INT÷ 
integer
 or
 
integer
 
INT÷ 
list
Returns list of quotients
from 
integer
 and 
list
. 
(F)
I
 
MATH
 
á
INT÷
â
2
-
7
Inverse: 
value
ê
Returns 1 divided by
value
. 
(F)
V
2
-
4
Inverse: 
list
ê
Returns 1 divided by each
list
 element. 
(F)
V
2
-
4