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);
}
}
* 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
Post a Comment
Post Your Valuable Comments