Program to convert the temperature in degree fahrenheit to degree celcius

/**
 * Program to convert the temperature in degree fahrenheit to degree celcius
 */

public class Converter {
    public static void main(String[] args) {
        float degFah = 120.f;
        float degCel = (degFah - 32) * (5.0f/9);
        System.out.println("Temperature in degree Celcius is " + degCel);
    }
}

Comments

Popular posts from this blog

Zeller's Congruence

Property Event-Delegation

Method with variable arguments