Question
Write a program for NOAA that will store the following information in a 2D array: Please do it in java Day Wind Speed (mph) Temp
Write a program for NOAA that will store the following information in a 2D array: Please do it in java Day Wind Speed (mph) Temp (F) 1 12 65 2 23 73 3 15 82 4 5 55 5 25 95 6 10 70 7 7 89 8 17 99 9 35 84 10 10 100 Then have the program calculate the top wind speed and minimum temperature found within that data and display the following output: Weather Data Summary Day Wind Speed (mph) Temp (F) 1 12 65 2 23 73 3 15 82 4 5 55 5 25 95 6 10 70 7 7 89 8 17 99 9 35 84 10 10 100 Top Wind Speed Found: 35 mph on Day 9 Coldest Temperature: 55 F on Day 4 Average Wind Speed: 15.9 mph Save the class as NoaaWeatherData.java and ensure that it has the following methods defined: void main() void displayData() int topWindSpeed() int minTemperature() float averageWindSpeed() Feel free to add parameters to the methods listed above if you like. However, the return type of the methods must be the same as defined above.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started