Question: 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:
where ta is the outside temperature measured in degrees Fahrenheit and v is the speed measured in miles per hour. twc is the wind-chill temperature. The formula cannot be used for wind speeds below 2 mph or temperatures below -58oF or above 41oF. Write a program that prompts the user to enter a temperature between -58oF and 41oF and a wind speed greater than or equal to 2 and displays the wind-chill temperature. Use Math.pow(a, b) to compute v0.16.
1 2 |
/**<br /> *<br /> * @Author: Aghatise Osazuwa<br /> * Website: www.cscprogrammingtutorials.com<br /> *<br /> * Exercise 2.17 - Science: wind-chill temperature<br /> *<br /> */ <br /><br />import java.util.Scanner;<br /><br />public class Ex02_17 {<br /><br /> public static void main(String[] args) {<br /> <br /> // Display Program Information<br /> System.out.println("This Program Calculates Wind-chill Temperature.n");<br /><br /> // create Scanner <br /> Scanner input = new Scanner(System.in);<br /><br /> // prompt user to enter details<br /> System.out.println("Enter the outside temperature in Fahrenheit "<br /> + "(between -58 and 41 degrees):");<br /> double temperature = input.nextDouble();<br /> System.out.println("Enter the wind speed in miles per hour "<br /> + "(greater than or equal to 2 mph):");<br /> double speed = input.nextDouble();<br /><br /> // calculate area using the formula <br /> //twc = 35.74 + (0.6215 * ta) - (35.75 * Math.pow(v, 0.16)) + (0.4275 * ta * Math.pow(v, 0.16))<br /> // where twc = wind-chill temperature<br /> // ta = outside temperature measured in degrees Fahrenheit<br /> // v = v is the speed measured in miles per hour<br /> // Note that formula cannot be used for wind speeds below 2 mph or <br /> // temperatures below -58 degrees Fahrenheit or above 41 degrees Fahrenheit<br /> double windChillTemperature = 35.74 + (0.6215 * temperature) - (35.75<br /> * Math.pow(speed, 0.16)) + (0.4275 * temperature * Math.pow(speed, 0.16));<br /> // format area to five decimal places<br /> windChillTemperature = (int) (windChillTemperature * 100000) / 100000.0;<br /><br /> // display the result<br /> System.out.println("The area of the hexagon is " + windChillTemperature + "n");<br /> }<br />}<br /> |
Click here to see other solutions to Introduction to Java Programming.