// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include #include /* printf */ #include /* pow */ #include /* pow */ using namespace std; using std::cout; using std::cin; using std::endl; const float FMAX = 121; const float FMIN = -80; const float CMAX = 49.5; const float CMIN = -62; //Set values for minimum and maximum temperatures. int CtoF(int Celsius) { return Celsius; } int main() { int Celsius = 0; cout << "Please enter a temperature between -62 and 49.5 degrees Celsius: \n"; cin >> Celsius; cout << CtoF(12) << endl; cout << "Hello World!\n"; }