(Temperature Conversions) Implement the following integer methods:
a) Method Celsius returns the Celsius equivalent of a Fahrenheit temperature, using the calculation
c = 5.0 / 9.0 * ( f - 32 );
b) Method Fahrenheit returns the Fahrenheit equivalent of a Celsius temperature, using the calculation
f = 9.0 / 5.0 * c + 32;
c) Use the methods from parts (a) and (b) to write an app that enables the user either to enter a Fahrenheit temperature and display the Celsius equivalent or to enter a Celsius temperature and display the Fahrenheit equivalent.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.