//Place value returned by the function into the celsius variable
//Print out the fahrenheit and celsius variable with 1 place after the decimal
//Use iomanip, setprecision, fixed, showpoint
}
return 0;
}
double get_celsius (double f)
{
double celsius = 0.0f;
celsius = ((5.0 / 9) * (f - 32)); //equation of conversion from farenheit to celsius
return celsius; //(5 / 9) * (f - 32); (this will return to the int main function
}