i need that formula and also i need to convert cm-->inches
thnks
Printable View
i need that formula and also i need to convert cm-->inches
thnks
inches = 2.54 * centimetersCode:Function toC(F as double) as double
toC = (5/9)*(F-32)
end Function
Function toF(C as double) as double
toF = ((9/5)*C)+32
End function