Question: Prerequisites . . To complete this project, you need to make sure that you have the following: C++ and the g++ compiler A C++ IDE

Prerequisites . . To complete this project, you need to make sure that you have the following: C++ and the g++ compiler A C++ IDE or text editor (multiple editors exist for developers) An understanding of the basic CH constructs. . Problem Description Given the following problems, write C++ programs to solve any seven of these problems. 7. To find out the extent of coldness of the weather or the wind chill, certain other factors other than temperature need to be considered. Factors involving relative humidity, wind speed, and sunshine perform vital roles in defining the coldness outside. In 2001, the National Weather Service (NWS) implemented the new wind-chill temperature to measure the coldness using temperature and wind speed. The formula is given as follows: twe = 35.74 +0.6215a - 35.75v0.16 + 0.4275tav0.16 where to is the outside temperature measure in degrees Fahrenheit and v is the wind speed in miles per hour. Twc is the wind-chill temperature. This formula cannot be used for wind speeds below 2 mph or temperatures below -58F or above 41F. Write a C++ program called windchill.cpp that prompts the user to enter a temperature. If the temperature is between -55F and 45F and a wind speed greater than or equal to 2, the program calculates and displays the wind-chill temperature - and then ends. If the value entered by the user is outside the range, the program displays an error saying "Value outside range) and keeps looping till the user enters a valid value
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
