In this tutorial, we will discuss the concept of the program to convert Fahrenheit into celsius using the Java method
In this post, we will learn how to write a program to convert Fahrenheit into Celsius using the scientific equation in Java programming language with an Example program.
Temperature and conversion
Generally, We have known three types of temperature units Fahrenheit, Celsius, and Kelvin. In this article, we are discussing how to convert temperature units Fahrenheit into Celsius. Fahrenheit and Celsius are the measuring units in degrees as 0F and 0C respectively.
Scientific equation Celsius = (Fahrenheit-32)*9/5
In this program, the user declares a double variable as a parameter for Celsius in the user-defined method. When the user calls the method, the celsius value passes to the method as an argument.
Finally, the Celsius value is calculated using a scientific equation
and displays on the screen.
Program 1
class Fah_to_Cel_method{ double con_Celsius(double f){ return ((f-32)*5/9); } public static void main(String args[]){ Fah_to_Cel_method res=new Fah_to_Cel_method(); double result=res.con_Celsius(32); double result1=res.con_Celsius(212); double result2=res.con_Celsius(140); System.out.println( "celsius is =" +result); System.out.println( "celsius is =" +result1); System.out.println( "celsius is =" +result2); } }
When the above code is executed, it produces the following result
Celsius is =0.0; Celsius is =100.0; Celsius is =60.0;
In this program, the user declares a double variable as a parameter for Fahrenheit in the user-defined method. When the user runs the program (calling the method), the program is asked for the value for Fahrenheit and stores the given value in the variable Fahrenheit as an argument for the method.
Finally, the Celsius value is calculated using scientific equations and displayed on the screen.
Program 2
import java.util.Scanner; class Fah_to_Cel_method1{ double con_Celsius(double f){ return ((f-32)*5/9); } public static void main(String args[]){ Scanner sc=new Scanner(System.in); System.out.println("Enter a degree in Fahrenheit: "); double fahrenheit=sc.nextDouble(); Fah_to_Cel_method1 res=new Fah_to_Cel_method1(); double result=res.con_Celsius(fahrenheit); System.out.println( "Celsius is =" +result); } }
When the above code is executed, it produces the following result
Enter a degree in Fahrenheit: 212 Celsius is =100.0
Similar post
Code to convert Fahrenheit to celsius using the Java
Code to convert Celsius to Fahrenheit using the Java
Java program to convert Fahrenheit to celsius using the method
Java program to convert Celsius to Fahrenheit using the method
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…