Program to convert temperature from degree Celsius to Kelvin
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++
// 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 Kelvinfloat Celsius_to_Kelvin(float C){ return (C + 273.15);}// driver functionint 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 kelvinimport 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 Kelvindef Celsius_to_Kelvin(C): return (C + 273.15)# Driver Code# variable to hold the# temperature in CelsiusC = 100print("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 kelvinusing 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 Kelvinfunction 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 Kelvinfunction 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
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.


