#include
int main() return 0; No related posts. Related posts brought to you by Yet Another Related Posts Plugin.
{
double fahr , celsius;
cout<<"Enter the temperature in degrees fahrenheit: ";
cin>>fahr;
//convert to celsius
celsius = (5.0 / 9.0) * (fahr – 32.0);
cout<<"The temperature in celsius is "<
}
























