Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Use python programming language. Wind chill is the perceived decrease in air temperature felt by the body on exposed skin due to the flow of

Use python programming language.

Wind chill is the perceived decrease in air temperature felt by the body on exposed skin due to the flow of air. Here in northern Minnesota we are very familiar with wind chill and its effects. Your project will be to create a program to compute the wind chill.

There are two pieces of information you will need to compute wind chill, temperature and wind speed. Use the following formula to compute wind chill. Then inform the user of the result.

WC = 0.6215 T 35.75 V0.16 + 0.4275 T V0.16 + 35.74

WC is Wind chill

T is temperature in Fahrenheit

V is wind speed in miles per hour

There are a couple special rules for high temperatures and low wind speeds. When the temperature is above 50 wind chill cannot be calculated. Also when the wind speed is below 3 mph the wind chill is simply the unaltered temperature.

Determine when the user enters an invalid temperature and print an error message.

Determine when the user enters a velocity less than 3 mph and use the following formula instead of the normal one.

WC = T

Note: Assume the user always enters a number

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions