i need help with this java program! the assignment details is included! i need it As soon as Possible.
Develop a Java application that prompts for and reads two double numeric amounts that represent the Fahrenheit temperature and the wind speed. The temperature must be between -45 and 40 inclusively. The wind speed must be between 5 and 60 inclusively. Use these two amounts in the formula below to calculate the wind chill temperature in degrees Fahrenheit. Here is how you calculate the New Wind Chill Index: Wind Chill (F) = 35.74 +0.6215T - 35.75(V0.16) + 0.4275T(V0.16), where V is the Wind Speed in MPH, and T is the temperature in degrees F. Assignment Details Use the Scanner class for input and use System.out.print or System.out.println for output. Please make sure that the Scanner is closed when your project terminates. You must use "named constants" for any literal values that will not change during program execution. You must use meaningful variable names and good indentation. Ask the user for the Fahrenheit temperature and the wind speed. Remind the user that temperature values should be greater than or equal to -45, but less than or equal to 40, and the wind speeds should be greater than or equal to 5, but less than or equal to 60, but don't validate these values in your code. Display a header for your application. Display the wind chill temperature that results. Display your name as programmer at the end. In your Learning Experience: highlight your lessons learned and learning experience from working on this project. What have you learned? What did you struggle with? What will you do differently on your next project? Include what parts of the project you were successful at, and what parts (if any) you were not successful at GitHub: In your repsitory (see Lab 1), upload the files initially provided in Blackboard for the project. When you are finished with the design and programming, upload your design file and java file. You will want to upload these files as contents of a directory so that future uploads can be kept separate. Take a screen shot of the GitHub repository. Just in case you know what an array is -- you may not use arrays (or any Java collections of any kind) while implementing this project. Run your application with the command line (iavac, java) and with an IDE Integrated Development Environment (Eclipse)