Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
Public Sub Form_Open()
|
||||
Dim fKelvin As Float
|
||||
|
||||
fKelvin = InputBox("Enter a Kelvin value", "Kelvin converter")
|
||||
|
||||
Print "Kelvin =\t" & Format(Str(fKelvin), "#.00")
|
||||
Print "Celsius =\t" & Format(Str(fKelvin - 273.15), "#.00")
|
||||
Print "Fahrenheit =\t" & Format(Str(fKelvin * 1.8 - 459.67), "#.00")
|
||||
Print "Rankine =\t" & Format(Str(fKelvin * 1.8), "#.00")
|
||||
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue