#include <iostream>
using namespace std;
int main()
{
double celsiusDegree;
cout << "Enter celsius degree: ";
cin >> celsiusDegree;
double fahrenheitDegree = (9.0/5)*celsiusDegree + 32;
cout << "Fahrenheit: " << fahrenheitDegree << endl;
return 0;
}
Comments
Leave a comment