List of utility methods to do Celsius to Kelvin Convert
float | convertFromCelsiusToKelvin(float value) convert From Celsius To Kelvin return value + 273.15f;
|
int | CelciusToFahrenheit(int temp) Celcius To Fahrenheit double fahr = temp * 9 / 5 + 32; return (int) fahr; |