Using Indefinite Loop Structures - HP 48gII Advanced User's Reference Manual

Graphing calculator
Hide thumbs Also See for 48gII:
Table of Contents

Advertisement

FOR takes start and finish from the stack as the beginning and ending values for the loop counter, then creates
the local variable counter as a loop counter. Next, the loop-clause is executed — counter can appear within the
loop-clause. STEP takes the increment value from the stack and increments counter by that value. If the
argument of STEP is an algebraic or a name, it's automatically evaluated to a number.
The increment value can be positive or negative. If the increment is positive, the loop is executed again if
counter is less than or equal to finish. If the increment is negative, the loop is executed if counter is greater than
or equal to finish. Otherwise, counter is purged and execution resumes following STEP. In the previous
flowchart, the increment value is positive.
To enter FOR ... STEP in a program:
Press !° %BRCH% ... %FOR%.
!
Example:
The following program places the squares of the integers 1, 3, 5, 7, and 9 on the stack:
« 1 9 FOR x x SQ 2 STEP »
Example:
The following program takes n from the stack, and returns the series of numbers 1, 2, 4, 8, 16, ...,
n. If n isn't in the series, the program stops at the last value less than n.
« 1 SWAP FOR n n n STEP »
The first n is the local variable declaration for the FOR loop. The second n is put on the stack each iteration of
the loop. The third n is used by STEP as the step increment.

Using Indefinite Loop Structures

The DO ... UNTIL ... END Structure
The syntax for this structure is
Syntax
Start
finish
FOR
loop-clause
increment
STEP
FOR ... STEP Structure
Flowchart
1:Start
2:finish
counter=start
Store finish
Body of loop
1:increment
counter = counter +
increment
Is
yes
counter finish?
no
RPL Programming 1-21

Hide quick links:

Advertisement

Table of Contents
loading

This manual is also suitable for:

49g+

Table of Contents