Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Java Program to Convert Temperature in Fahrenheit to

Celsius
Problem:- Java program to convert Fahrenheit to Celsius or
Java Program to Convert Fahrenheit into Celsius or How to
Convert Fahrenheit to Celsius in Java with Example or Java
Program to Convert Centigrade to Fahrenheit or java program
to convert Fahrenheit to Celsius or java program to convert
Celsius to Fahrenheit and vice versa. Java Program For
Converting Temperature Celsius Into Fahrenheit .means you
have to give the temperature in Celsius you need to change
the temperature in Fahrenheit.

Logic:- For converting temperature Celsius to Fahrenheit


there is a no magic there is a formula you have to just put
Celsius temperature and program automatically calculate and
print temperature in Fahrenheit with the help of given
formula.

Formula

Fahrenheit = 32 + (Celsius * 9 / 5) //or you can use 1.8 in


place of 9/5

See Also:- C++ Program For Converting Temperature Celsius


Into Fahrenheit
Java Program to Convert Temperature in Fahrenheit to
Celsius
import java.util.*;
/*
Visit http://www.programmingwithbasics.com/
*/
class CtoF
{
public static void main(String[] args)
{
float cel,feh;
Scanner scan = new Scanner(System.in);
System.out.println("Enter The Temperature in Celsius");

cel = scan.nextFloat();
feh = 32 + (cel * 9 / 5);

System.out.println("Temperature in Fahrenheit = " + feh);


}
}

You might also like