Hi Everyone this is what I have so far but below is how the output is supposed to have -20 and an extra current temperature what am i doing wrong?
During winter when it is very cold, typically, everyone would like to know the windchill factor, especially, before going out. Meteorologists use the following formula to compute the windchill factor, W:
W = 35.74 + 0.6215 * T-35.75*V0.16 + 0.4275 * T *V0.16,
where V is the wind speed in miles per hour and T is the temperature in degrees Fahrenheit.
Write a program that prompts the user to input the wind speed, in miles per hour, and the temperature in degrees Fahrenheit. The program then outputs the windchill factor.