tempconv TI-83 Source Code - Skip Header

tempconv TI-83 Source Code

This is intended to be the human readable version of the source code for Temperature Conversion. This version is intended to work only on the TI-83 Texas Instruments graphic calculator. Also available: Documentation about "Temperature Conversion" and versions of the program for other calculators and in other formats.

Any line that begins with a backslash is a comment and should not be entered into the calculator. (Comments have been colored green) For an authoritative copy of this program's source code that can be imported to the calculator via a computer, consult the text version of Temperature Conversion source code for the TI-83, along with the character reference. The special character reference also gives an overview of all non-ASCII characters for the calculator, and shows the menus in which they can be found.

\start83P\
\comment=Program file dated 04/10/96, 18:39
\protected=FALSE
\name=TEMPCONV
ClrHome
Menu("FROM","FAHRENHEIT",1,"CELSIUS",2,"KELVIN",3)
Lbl 1
Prompt F
5(F-32)/9→C
C+273.15→K
Goto 4
Lbl 2
Prompt C
C+273.15→K
9C/5+32→F
Goto 4
Lbl 3
Prompt K
K-273.15→C
9C/5+32→F
Lbl 4
ClrHome
Disp F,C,K
Output(1,1,"F°")
Output(2,1,"C°")
Output(3,1,"K")
Stop
COPYRIGHT STEPHEN OSTERMILLER 1996

\stop83P\