[solved]-Winter Cold Typically Everyone Would Like Know Windchill Factor Especially Going Meteorol Q39052658
- During winter when it is very cold, typically, everyone wouldlike to know the windchill factor, especially, before going out.Meteorologists use the following formula to compute the windchillfactor, W:
W = 35.74 + 0.6215*T – 35.75*pow(V, 0.16) + 0.4275*T*pow(V,0.16);
where V is the wind speed in miles per hour and T is thetemperature in degrees Fahrenheit.
Write a program that prompts the user to input the wind speed, inmiles per hour, and the temperature in degrees Fahrenheit. Theprogram then outputs the windchill factor.
- Your program must contain at least two functions: one to getthe user input and the other to determine the windchillfactor.
- The main function is not considered to be one of two functions.That function is always included. Also, the functions must includedata being passed to them and if necessary a value returned.
- Hint: ideally the function for user input is a void functionpassing parameters by reference and the windchill function shouldbe a value-returning function.
Program Output
Here is a screenshot of the output you should get from yourprogram:

Expert Answer
Answer to During winter when it is very cold, typically, everyone would like to know the windchill factor, especially, before goi… . . .
OR

