Android Utililty Methods Celsius to Kelvin Convert

List of utility methods to do Celsius to Kelvin Convert

Description

The list of methods to do Celsius to Kelvin Convert are organized into topic(s).

Method

floatconvertFromCelsiusToKelvin(float value)
convert From Celsius To Kelvin
return value + 273.15f;
intCelciusToFahrenheit(int temp)
Celcius To Fahrenheit
double fahr = temp * 9 / 5 + 32;
return (int) fahr;