Named Variables and Exponents
Hi
The formula I want to use is:
= 35.74 + 0.6215T - 35.75V (**0.16) + 0.4275TV(**0.16)
In the formula, V is in the wind speed in statute miles per hour, and T is the temperature in degrees Fahrenheit.
In the formula, ** means the following term is an exponent (i.e. 10**(0.5 ) means 10 to the 0.5 power, or the square root of V)
So I am unsure how to create this
windchill = 35.74
+ 0.6215*(temp32 * 1.8 + 32)
- 35.75*windSpeed * 10e0.16
+ 0.4275*(temp32 * 1.8 + 32)* windSpeed * 10e0.16;
But Java complains about not being a statement and want ( or ) or ;
Please can you help me?
Thanks
Many thanks