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

  • برمجة سي بلس بلس
  • برمجة

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  

الأجوبة

#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;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...