Write a program in C++ to convert temperature in Fahrenheit to Kelvin
- برمجة سي بلس بلس
- برمجة
- 2021-05-11
- MarwaMohammed
الأجوبة
#include <iostream>
using namespace std;
int main()
{
float kel, frh;
cout << "\n\n Convert temperature in Fahrenheit to Kelvin :\n";
cout << "---------------------------------------------------\n";
cout << " Input the temperature in Fahrenheit : ";
cin >> frh;
kel = (5.0 / 9) * (frh - 32) + 273.15;
cout << " The temperature in Fahrenheit : " << frh << endl;
cout << " The temperature in Kelvin : " << kel << endl;
cout << endl;
return 0;
}القوائم الدراسية التي ينتمي لها السؤال