You can find everything you need in details in attached
Objective: Become more familiar with C++ I/O, computations in C++,
and the C++ development environment you are using for this class.
Description: Write a program that calculates the wind chill factor given
the current temperature, T (°F), and wind speed, V (MPH, miles per hour).
Specifically, your final program will read the current temperature and the
wind speed, then calculate and display the wind chill (in both Fahrenheit
and Celsius).
Useful formulas:
Wind Chill (°F) = 35.74 +0.6215T – 35.75 V0.16 +0.4275 T V0.16
9
F ==C + 32
Outline of solution:
1. Display standard output information using the ShowProgramHeader()
function to print your required output information. (Remember to call
the ShowProgramHeader() function from from your main function.)
2. Prompt user for temperature (input).
3. Read temperature (F).
4. Prompt user for wind speed (input).
5. Read wind speed (MPH).
6. Calculate wind chill (F).
7. Print input values and wind chill factor (show units).
8. Calculate wind chill factor in Celsius.
9. Print wind chill factor in Celsius.
–
Deliverables:
• Program-fully documented.
• Output:
Show intermediate steps in the development of your program.
Test your final program using at least three different sets of values.
• Sample calculation sheet: In addition to your program and output,
attach a page showing your sample calculations. These sample calcu-
lations should be done before you start programming and used as a
minimal set of test cases for your program.