Java tutorial
//package com.java2s; public class Main { public static float kelvinToCelsius(float temperature) { float cels = temperature - 273.15f; return Math.round(cels * 10) / 10; } }