A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a program in C++ to convert temperature in Celsius to Kelvin
Q:

Write a program in C++ to convert temperature in Celsius to Kelvin

0

Write a program in C++ to convert temperature in Celsius to Kelvin

Sample Output:

 Convert temperature in Celsius to Kelvin  :                           
---------------------------------------------------                    
 Input the temperature in Celsius : 26.85                              
 The temperature in Celsius : 26.85                                    
 The temperature in Kelvin : 300  

All Answers

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

#include <iostream>
using namespace std;
 
int main()
{
    float kel, cel;
		cout << "\n\n Convert temperature in Celsius to Kelvin  :\n";
		cout << "---------------------------------------------------\n";	
    cout << " Input the temperature in Celsius : ";
    cin >> cel;
    kel = cel + 273.15;
    cout << " The temperature in Celsius : " << cel << endl;
    cout << " The temperature in Kelvin : " << kel << endl;
	cout << endl;
    return 0;
}

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now