celsiusToFahrenheit static method

double celsiusToFahrenheit(
  1. double temp
)

Implementation

static double celsiusToFahrenheit(double temp) {
  return temp * 9 / 5 + 32;
}