Suppose you need functions to convert temperatures between the Fahrenheit and Celsius scales. Here are three ways to do it.
(a) Create two functions: f2c and c2f that each take a temperature as a double and return a double indicating the converted temperature
(b) Do as in part (a) except name the functions FahrenheitToCelsius and CelsiusToFahrenheit
(c) Create just one convertTemperature(double temperature, int fromScale, int toScale) function that takes three parameters: the temperature to be converted, the scale used by that temperature, and the scale to be used for the converted temperature
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.