146
Programming
Chapter 8
Parameters:
left side/right side: variable (A to Z), numeric constant, variable expression (such as:
A
!
2)
relational operator: =,
G
G
G
G
G
, >, <,
$
,
%
Description:
1. The following six relational operators can be used in the conditional jump com-
mand
<left side> = <right side> : true when <left side> equals <right side>
<left side>
G
G
G
G
G
<right side> : true when <left side> does not equal <right side>
<left side> > <right side> : true when <left side> is greater than <right side>
<left side> < <right side> : true when <left side> is less than <right side>
<left side>
$
<right side> : true when <left side> is greater than or equal to <right
side>
<left side>
%
<right side> : true when <left side> is less than or equal to <right side>
2. See “
#
(Jump Code)” for details on using the conditional jump.
10. Text Display
You can include text in a program by simply enclosing it between double quotation
marks. Such text appears on the display during program execution, which means
you can add labels to input prompts and results.
Program
Display
?
"
X
?
”X =” ?
"
X
X = ?
• If the text is followed by a calculation formula, be sure to insert a display com-
mand (
^
) between the text and calculation.
• Inputting more than 13 characters causes the text to move down to the next line.
The screen scrolls automatically if the text causes the screen to become full.
11. Using Calculator Functions in
Programs
k
k
k
k
k
Using Graph Functions in a Program
You can incorporate graph functions into a program to draw complex graphs and to
overlay graphs on top of each other. The following shows various types of syntax you
need to use when programming with graph functions.
• View Window
View Window –5, 5, 1, –5, 5, 1
_
P.143
P.48
Содержание fx-7400G
Страница 46: ...Differential Calculations Chapter 3 ...
Страница 164: ...161 1 2 3 4 5 Program for Circle and Tangents No 4 Step Key Operation Display ...
Страница 165: ...162 Program for Circle and Tangents No 4 Step Key Operation Display 6 7 8 9 10 ...
Страница 166: ...163 11 12 13 14 15 Program for Circle and Tangents No 4 Step Key Operation Display ...
Страница 167: ...164 16 17 18 Program for Circle and Tangents No 4 Step Key Operation Display ...
Страница 170: ...167 1 2 3 4 5 Program for Rotating a Figure No 5 Step Key Operation Display ...