Thursday, July 4, 2024
HomeLanguagesJavaJava Program to Convert Celsius into Fahrenheit

Java Program to Convert Celsius into Fahrenheit

Celsius scale is a temperature scale that is based on the freezing point of water at 0 °C and the boiling point of water at 100 °C. Fahrenheit scale is a temperature scale that has a freezing point of water at 32 °F and the boiling point of water at 212 °F.

Examples:

Input : 0
Output: 32
Input :-40
Output:-40

 fahrenheit=(celsius*1.8)+32

Approach:

  1. Initializing value of celsius as 10.0 and Fahrenheit value as 0.0
  2. Calculate the Fahrenheit using the below formula
  3. Fahrenheit=(celsius*1.8)+32;
  4. Display Fahrenheit.

Below is the implementation of the above approach:

Java




// Java Program to Convert Celsius into Fahrenheit
class celsiustofahrenheit {
    public static void main(String[] args)
    {
        // initialising
        double celsius = 10.0, fahrenheit = 0.0;
        
        // formula for conversion
        fahrenheit = (celsius * 1.8) + 32;
        System.out.println(
            " value of temperature in fahrenheit:"
            + fahrenheit);
    }
}


Output

 value of temperature in fahrenheit:50.0

Time Complexity: O(1)

Space Complexity: O(1)

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments