#include using namespace std; int main() { char scale; int temp; cout << "Enter Scale (F or C): "; cin >> scale; cout <<"Enter temperature: "; cin >> temp; float con_temp; switch (scale) { case 'f' : case 'F' : con_temp = (temp -32.0 )*5.0/9.0; cout << temp <<" in fharenheit = " << con_temp <<" in celsius" <