7 lines
139 B
Text
7 lines
139 B
Text
|
|
function convertDegrees k
|
||
|
|
put k/5 * 9 into r
|
||
|
|
put k - 273.15 into c
|
||
|
|
put r - 459.67 into f
|
||
|
|
return k,r,c,f
|
||
|
|
end convertDegrees
|