Data update

This commit is contained in:
Ingy döt Net 2025-02-27 18:35:13 -05:00
parent 8e4e15fa56
commit 72eb4943cb
1853 changed files with 35514 additions and 9441 deletions

View file

@ -0,0 +1,20 @@
REM Temperature conversion
PRINT "Kelvin degrees";
INPUT K@
WHILE K@ >= 0
C@ = K@ - 273.15
R@ = K@ * 1.8
F@ = R@ - 459.67
CLS
PRINT K@;
PRINT " Kelvin is equivalent to"
PRINT C@;
PRINT " degrees Celsius,"
PRINT F@;
PRINT " degrees Fahrenheit,"
PRINT R@;
PRINT " degrees Rankine."
PRINT "Kelvin degrees";
INPUT K@
WEND
END