Familiarize with MS Visual Studio
Instructions
Work on the following tasks.
C = 5/9*(F-32)
. Use online converter to check if your program converts correctly.
Google Temperature Converter.
#include <iostream>
using namespace std;
int main()
{
double tempC, tempF;
cout << "Enter a temperature in Celsius: " << endl;
cin >> tempC;
//Conversion here
cout << "A temperature of " << tempC << " in Celsius is equivalent to " << tempF << " in Fahrenheit. " << endl;
return 0;
}