20/12/2016

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);
 }
}

See Also:- C Program For Converting Temperature Celsius Into Fahrenheit


Output:-
Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: