Q:

Java Program to Convert Temperature in Fahrenheit to Celsius

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.*;

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

 

Output:

Enter The Temperature in Celsius

100.03999

Temperature in Fahrenheit = 212.07199

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now