Discuss teh below:
Q: Implement the following integer methods:
a.) Method Celsius returns the Celsius equivalent of a Fahrenheit temperature, using the calculation
Celsius = 5.0 / 9.0 * ( Fahrenheit - 32 );
b.) Method Fahrenheit returns the Fahrenheit equivalent of a Celsius temperature, using the calculation
Fahrenheit = 9.0 / 5.0 * Celsius + 32;
c.) Use the methods from parts (a) and (b) to write an application that enables the user either to enter a Fahrenheit temperature and display the Celsius temperature and display the Fahrenheit equivalent.