Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
10 REM Translation of traditional basic version
|
||||
20 INPUT "Kelvin Degrees? ";k
|
||||
30 IF k <= 0 THEN STOP: REM A value of zero or less will end program
|
||||
40 LET c = k - 273.15
|
||||
50 LET f = k * 1.8 - 459.67
|
||||
60 LET r = k * 1.8
|
||||
70 PRINT k; " Kelvin is equivalent to"
|
||||
80 PRINT c; " Degrees Celsius"
|
||||
90 PRINT f; " Degrees Fahrenheit"
|
||||
100 PRINT r; " Degrees Rankine"
|
||||
110 GO TO 20
|
||||
Loading…
Add table
Add a link
Reference in a new issue