Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please write a Java program that prints How cold is it outside? The temperature alone is not enough to provide the answer. Other factors including

Please write a Java program that prints
image text in transcribed
How cold is it outside? The temperature alone is not enough to provide the answer. Other factors including wind speed, relative humidity, and sunshine play important roles in determining 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: tuse 3.74+0.6215ta - 35.75v0.16 +0.4275t.v0.16 Correction: The first number in this equation should b 35.74 where to is the outside temperature measured in degrees Fahrenheit, v is the speed measured in miles per hour, and twe is the wind-chill temperature. The formula cannot be used for wind speeds below 2mph or temperatures below -58F or above 41F. Write a program that prompts the user to enter a temperature between-58F and 41F and a wind speed greater than or equal to 2 then displays the wind-chill temperature. Use Math.pow(a, b) to compute vo.16. Your class must be named windchil1. Here is a sample run: Enter a temperature between -58F and 41F: 5.3 Enter the wind speed 2) in miles per hour: 6 The wind chill index is -5.567068455881625 Hint: the degree symbol has Unicode value ueobe At this point, you can't actually test if the numbers are out of the desired range. Don't worry about it; if someone enters invalid data, it's their problem. When you finish, upload your file Windchill.java

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

Database Concepts

Authors: David Kroenke, David J. Auer

3rd Edition

0131986252, 978-0131986251

More Books

Students also viewed these Databases questions