Code: (Select All)
Input "Farenheight temp"; T
Input "Wind MPH"; V
Print Wind_Chill(T, V)
Function Wind_Chill (T, V)
Wind_Chill = 35.74 + 0.6215 * T - 35.75 * (V ^ 0.16) + 0.4275 * T * (V ^ 0.16)
End Function
Please don't grade me on spelling ;-))
Quote:The question is: how do you put the brackets?
b = b + ...