HP Forums

Full Version: Remaining HP-65 Conditionals
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all.

I’m attempting to synthesize the extra conditionals that the 65 lacks.

What do you say about these sequences:

x>=y:

x>y GTO 1 x=y GTO 1………LBL 1

x<y:

x=y GTO 2 x>y GTO 2………LBL 1 (steps if x<y) R/S……LBL 2 (steps if x>=y)

Good? Another which saves program steps?

Thanks
How about these?

x>=y:

g x><y, g x<=y

x<y:

g x><y, g x>y
Reference URL's