/* Create a new Java class <date>_MethodsHomework.java 1. Create a new method convertFromFahrenheitToCelcius. It has one parameter int fahrenheit. Inside the method, it will convert Fahrenheit parameter into celcius by using this formula (F − 32) × 5/9 = C . You have to return the result. This is very similar to what we did in the class with addFourNumbers method. 2. recreate the same method as above with the same name^ BUT with 2 parameters, int fahrenheit1 and int fahrenheit2. Convert both of these and add them together, then print it out. You don't need to return in this second method. */
If you have any questions, feel free to email me at ddjapri@ayclogic.com