Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
10 PRINT "ENTER A TEMPERATURE IN KELVINS"
|
||||
20 INPUT K
|
||||
30 PRINT K;" KELVINS ="
|
||||
40 PRINT K-273.15;" DEGREES CELSIUS"
|
||||
50 PRINT K*1.8-459.67;" DEGREES FAHRENHEIT"
|
||||
60 PRINT K*1.8;" DEGREES RANKINE"
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
PRINT "Temperature in Kelvin?"
|
||||
INPUT K
|
||||
LET C = K + 273
|
||||
LET R = (9*K)/5
|
||||
LET F = R + 460
|
||||
PRINT C," Celsius"
|
||||
PRINT F," Fahrenheit"
|
||||
PRINT R," Rankine"
|
||||
Loading…
Add table
Add a link
Reference in a new issue