Description
Windchill Calculator Pseudocode:
- Declare float variable t for temperature.
- Declare float variable v for wind speed.
- Declare float variable w for windchill.
- Prompt the user to enter Temperature between -45 and 40 degree Fahrenheit.
- Prompt the user to enter Wind Speed between 5 and 60 miles per hour.
- Use the formula to calculate the Windchill
W = 35.74 + 0.6215 T – 35.75 (V^0.16) + 0.4275 T (V^0.16)
- Print Windchill.
- Print Programmer Name.