List of utility methods to do Fahrenheit to Celsius Convert
float | convertFromFahrenheitToCelsius(float value) convert From Fahrenheit To Celsius return (value - 32) * 5 / 9;
|
int | getTempIntInCelsius(int fahrenheit) get Temp Int In Celsius return getIntWithRound((float) (fahrenheit / 1.8)); |
float | getTempInCelsius(float fahrenheit) get Temp In Celsius return (fahrenheit - 32) * 5 / 9;
|
int | FahrenheitToCelcius(int temp) Fahrenheit To Celcius double celcius = (temp - 32) * 5 / 9; return (int) celcius; |