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
See Also:- C Program For Converting Temperature Celsius Into Fahrenheit
Output:-
You May Also See
1. Java Program For Denomination of an Amount Using While Loop
2. Java Program To Calculate Factorial Of A Given Number
3. Java Program For Calculate Percentage Of 5 Subjects
4. Java Program To Find Greater No. Among given Three Number
5. Java Program To Check Number Is Positive Or Negative
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);
}
}
See Also:- C Program For Converting Temperature Celsius Into Fahrenheit
Output:-
You May Also See
1. Java Program For Denomination of an Amount Using While Loop
2. Java Program To Calculate Factorial Of A Given Number
3. Java Program For Calculate Percentage Of 5 Subjects
4. Java Program To Find Greater No. Among given Three Number
5. Java Program To Check Number Is Positive Or Negative
0 Comments: