0% found this document useful (0 votes)
119 views3 pages

Java Fahrenheit to Celsius Converter

This Java program allows a user to input a temperature in Fahrenheit and outputs the equivalent temperature in Celsius. The code imports necessary libraries, declares variables to store the user input temperature and converted temperature, gets the Fahrenheit temperature from the user, performs the conversion calculation to Celsius using the formula (F - 32) * 5/9, and prints out the temperature in Celsius.

Uploaded by

vinchooo
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
119 views3 pages

Java Fahrenheit to Celsius Converter

This Java program allows a user to input a temperature in Fahrenheit and outputs the equivalent temperature in Celsius. The code imports necessary libraries, declares variables to store the user input temperature and converted temperature, gets the Fahrenheit temperature from the user, performs the conversion calculation to Celsius using the formula (F - 32) * 5/9, and prints out the temperature in Celsius.

Uploaded by

vinchooo
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Java program to convert

Fahrenheit to Celsius
program

[Link]
Java program to convert Fahrenheit to
Celsius: This code does temperature
conversion from Fahrenheit scale to Celsius
scale.
Java programming code
import [Link].*;

class FahrenheitToCelsius {
public static void main(String[] args) {
float temperatue;
Scanner in = new Scanner([Link]);

[Link]("Enter temperatue in Fahrenheit");


temperatue = [Link]();

temperatue = ((temperatue - 32)*5)/9;

[Link]("Temperatue in Celsius = " +


temperatue);
}
}

Download Fahrenheit to Celsius program


class file.

[Link]
Output of program:

For Celsius to Fahrenheit conversion use


T = 9*T/5 + 32
where T is temperature on Celsius scale.
Create and test Fahrenheit to Celsius
program yourself for practice.

[Link]

You might also like