HP Forums
Remaining HP-65 Conditionals - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: General Forum (/forum-4.html)
+--- Thread: Remaining HP-65 Conditionals (/thread-17478.html)



Remaining HP-65 Conditionals - Matt Agajanian - 09-15-2021 12:31 AM

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


RE: Remaining HP-65 Conditionals - Dave Britten - 09-15-2021 11:45 PM

How about these?

x>=y:

g x><y, g x<=y

x<y:

g x><y, g x>y