Skip to content

Instantly share code, notes, and snippets.

@CoolOppo
Created February 26, 2014 22:45
Show Gist options
  • Save CoolOppo/9240377 to your computer and use it in GitHub Desktop.
Save CoolOppo/9240377 to your computer and use it in GitHub Desktop.
A program I made in TI-BASIC to find two numbers that have a specified sum and product.
ClrHome
Disp "ENTER PRODUCT","AND SUM"
Prompt P,S
0->O
.5S->I
If (S<0 xor P<0)
Then
While (SO!=P)
S+1->S
O-1->O
I+1->I
If (I=100)
Then
ClrHome
Output(1,1,"NO RESULT FOUND")
Disp ""
Stop
End
End
End
If ((S>=0 and P>=0) or (S<0 and P<0))
Then
While (SO!=P)
S-1->S
O+1->O
I+1->I
If (I=100)
Then
ClrHome
Output(1,1,"NO RESULT FOUND")
Disp ""
Stop
End
End
End
ClrHome
Output(1,1,"YOUR NUMBERS ARE:"
Disp S,O
DelVar P
DelVar S
DelVar O
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment