Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Program to convert temperature from degree Celsius to Kelvin

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Given temperature in degree Celsius, convert it into to Kelvin . 
Examples: 
 

Input : C = 100
Output : k = 373.15

Input : C = 110
Output : k = 383.15

 

Formula for converting temperature in degree Celsius to kelvin- 
 

K = ( °C + 273.15 )
0 °C = 273.15 kelvin

Below is the program for temperature conversion: 
 

C




/* C Program to convert temperature from celsius to kelvin */
#include <stdio.h>
  
// function takes value in celsius and returns value in kelvin
float celsius_to_kelvin(float c)
{
  return (c + 273.15); 
}
  
int main()
{
  
  // variable of type float holds value in celsius
  float c = 50;
  
  // passing 'c' as parameter to the function
  // printing the value in kelvin
  printf("Temperature in Kelvin(K) : %0.2f",celsius_to_kelvin(c));
  return 0;
}

C++




// CPP program to convert temperature 
// from degree Celsius to kelvin
#include <bits/stdc++.h>
using namespace std;
  
// function to convert temperature
// from degree Celsius to Kelvin
float Celsius_to_Kelvin(float C)
{
    return (C + 273.15);
}
  
// driver function
int main()
{
    // variable to hold the 
    // temperature in Celsius
    float C = 100;
  
    cout << "Temperature in Kelvin ( K ) = " 
         << Celsius_to_Kelvin(C);
      
    return 0;
}

Java




// Java program to convert temperature 
// from degree Celsius to kelvin
import java.io.*;
  
class GFG {
    // function to convert temperature
    // from degree Celsius to Kelvin
    static float Celsius_to_Kelvin(float C)
    {
        return (float)(C + 273.15);
    }
      
    // Driver function
    public static void main (String[] args) 
    {
        // variable to hold the 
        // temperature in Celsius
        float C = 100;
      
        System .out.println ( "Temperature in Kelvin ( K ) = "
                             + Celsius_to_Kelvin(C));
              
    }
}
  
// This code is contributed by vt_m.

Python3




# Python3 program to convert temperature 
# from degree Celsius to kelvin
  
# Function to convert temperature
# from degree Celsius to Kelvin
def Celsius_to_Kelvin(C):
    return (C + 273.15)
  
# Driver Code
  
# variable to hold the 
# temperature in Celsius
C = 100
  
print("Temperature in Kelvin ( K ) = "
                    Celsius_to_Kelvin(C))
                      
# This code is contributed by Anant Agarwal.

C#




// C# program to convert temperature
// from degree Celsius to kelvin
using System;
  
class GFG {
      
    // function to convert temperature
    // from degree Celsius to Kelvin
    static float Celsius_to_Kelvin(float C)
    {
        return (float)(C + 273.15);
    }
  
    // Driver function
    public static void Main()
    {
        // variable to hold the
        // temperature in Celsius
        float C = 100;
  
        Console.WriteLine("Temperature in Kelvin ( K ) = " +
                                       Celsius_to_Kelvin(C));
    }
}
  
// This code is contributed by vt_m.

PHP




<?php
// PHP program to convert temperature 
// from degree Celsius to kelvin
  
// function to convert temperature
// from degree Celsius to Kelvin
function Celsius_to_Kelvin( $C)
{
    return ($C + 273.15);
}
  
    // Driver Code
      
    // variable to hold the 
    // temperature in Celsius
    $C = 100;
    echo "Temperature in Kelvin ( K ) = "
        , Celsius_to_Kelvin($C);
          
// This code is contributed by anuj_67.
?>

Javascript




<script>
  
// Javascript program to convert temperature 
// from degree Celsius to kelvin 
  
// function to convert temperature 
// from degree Celsius to Kelvin 
function Celsius_to_Kelvin(C) 
    return (C + 273.15); 
  
// driver function 
  
    // variable to hold the 
    // temperature in Celsius 
    let C = 100; 
  
    document.write("Temperature in Kelvin ( K ) = "
        + Celsius_to_Kelvin(C)); 
  
// This code is contributed Mayank Tyagi
  
</script>

Output: 

Temperature in Kelvin ( K ) = 373.15

Time Complexity: O(1), as we are not using any loops.

Auxiliary Space: O(1), as we are not using any extra space.


My Personal Notes arrow_drop_up
Last Updated : 17 Feb, 2023
Like Article
Save Article
Similar Reads
Related Tutorials