category

Program to convert Celsius into Fahrenheit

Program to convert Celsius into Fahrenheit

In this tutorial, we will discuss the concept of the Program to convert Celsius into Fahrenheit

In this post, we will learn how to write a program to convert Celsius into Fahrenheit using scientific equations in different programming languages with an Example program.

Temperature and conversion

Conversion equation

Generally, We have known three types of temperature units Fahrenheit, Celsius, and Kelvin. In this article, we are discussing how to convert temperature units Celsius into Fahrenheit. Fahrenheit and Celsius are the measuring units in degrees as 0F and 0C  respectively.

Scientific equation Fahrenheit= Celsius*9/5+32
program to convert Fahrenheit into Celsius
  • Declaring variables of Fahrenheit and Celsius
  • Initializing the value of  Celsius
  • Calculate the Fahrenheit value using the formula
  • Display the calculated value of Fahrenheit

 

Code to Convert Celsius into Fahrenheit

Java|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the Java programming language.

Program 1

//Java program to Solution of Convert Celsius into Fahrenheit
public class Celsius_To_Fahrenheit
{
public static void main (String args[]){
//declaring variables
//initiaizing Celsius as 70.0
double fahrenheit,celsius=70; 
fahrenheit=(celsius*9/5)+32;
//Calculate Fahrenheit value

    System.out.print("Temperature in Farhenheit:"+fahrenheit);

}
}

When the above code is executed, it produces the following result

Temperature in Farhenheit:158.0

C|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the C programming language.

Program 2

//Celsius into Fahrenheit convertion program in C
#include <stdio.h>

int main() {
    //float type variables declaration
    float celsius,fahrenheit;
    //initializing variables to celsius
    celsius=0;
    //Convert celsius to fahrenheit
    fahrenheit=((celsius*9/5)+32);
    printf("The temperature in Fahrenheit is==%f ",fahrenheit);
//Dispay fahrenheit value on the screen
    return 0;
}

When the above code is executed, it produces the following result

The temperature in Fahrenheit is==32.000000

 

C++|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the C++ programming language.

Program 3

//Celsius into Fahrenheit convertion program in C++
#include <iostream>
using namespace std;
int main() {
    float celsius, fehrenheit;
    //float type variables declaration
    //initialize variable to celsius
    celsius=70.0;
    //Calculate fehrenheit using celsius
    fehrenheit=(celsius * 9/5)+32;
    cout<<celsius<<" Celsius is: "<<fehrenheit <<" Fehrenheit";
    //Display result on the screen
    return 0;
}

When the above code is executed, it produces the following result

70 Celsius is: 158 Fehrenheit

 

C#|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the C # programming language.

Program 4

// Celsius to Fahrenheit  to convertion  program in C#
using System;
namespace temperature
{
public class CelstoFahr
{
    public static void Main(string[] args)
    {
        double celsius,fahrenheit; 
        //Declare variables as double
        celsius=10.00;
        //initialize value to Celsius
        fahrenheit=(1.8*celsius)+32;
        //Calculate Fahrenheit using scientific equation
        Console.WriteLine ("The temperature in Fahrenheit: "+fahrenheit);
        //Display result
        Console.ReadKey();
    }
}
}

When the above code is executed, it produces the following result

The temperature in Fahrenheit: 50

 

Python|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the Python programming language.

Program 5

# Python program to convert temperature in Celsius to Fahrenheit
celsius=67.5
#initialize variabe

#Calculate Fahrenheit
fahrenheit=(celsius*1.8)+32
#print reslut
print('%0.1f degree Celsius is equal to %0.1f degrees Fahrenheit' %(celsius,fahrenheit))

When the above code is executed, it produces the following result

67.5 degree Celsius is equal to 153.5 degrees Fahrenheit

 

PHP|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the PHP programming language.

Program 6

<?php
//php code to convert Celsius to Fahrenheit
$celsius=40.0;
//declare and initilize variable Celsius
$fahrenheit=(($celsius*9)/5)+32;
//Calculate temperature in Fahrenheit
echo("The temperature in Fahrenheit is: ");
echo(($fahrenheit));
//Print the temperature in Fahrenheit
?>

When the above code is executed, it produces the following result

The temperature in Fahrenheit is: 104

 

JavaScript|Celsius into Fahrenheit

In this program, the user declares and initializes a variable Celsius. It will be converted into Fahrenheit, by the scientific equation in the JavaScript programming language.

Program 7

//Program to Convert Celsius to Fahrenheit 
const celsius=36;
//declare and initialize variable Celsius
const fahrenheit=(celsius*1.8)+32;
//Calculate Fahrenheit using Celsius value
console.log(`${celsius} degrees celsius is equal to ${fahrenheit } degree Fahrenheit.` );
//Display the result on the screen

When the above code is executed, it produces the following result

36 degrees Celsius is equal to 96.8 degrees Fahrenheit.

 

Similar post

Code to convert Fahrenheit into Celsius using the Java

Code to convert Celsius into Fahrenheit using the Java

Java program to convert Fahrenheit into Celsius using the method

Java program to convert Celsius into Fahrenheit using the method

 

Code to convert Fahrenheit into Celsius using the C Language

Code to convert Celsius into Fahrenheit using the C Language

C program to convert Fahrenheit into Celsius using the function

C program to convert Celsius into Fahrenheit using the function

 

Code to convert Fahrenheit into Celsius using the C++ Language

Code to convert Celsius into Fahrenheit using the C++ Language

C++ code to convert Fahrenheit into Celsius using the function

C++ code to convert Celsius into Fahrenheit using the function

 

 

 

 

Convert Fahrenheit to Celsius:JavaScript function
Program for Celsius into Fahrenheit conversion
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

1 month ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

9 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago