Respuesta :

Answer:

The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:

Read the temperature given in degree Fahrenheit.

Convert the temperature in Fahrenheit into Celsius using the formula : C=5/9*(F-32)

Print the Fahrenheit and Celsius value of temperature.

End

Explanation:

The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:

Read the temperature given in degree Fahrenheit.

Convert the temperature in Fahrenheit into Celsius using the formula : C=5/9*(F-32)

Print the Fahrenheit and Celsius value of temperature.

End

The code for the same is -

void main (  )

{

 float    a , b ;

       cout<<" enter temperature in Fahrenhite : "<<endl;

        cin>> b;

        a = ( b - 32 ) * ( 5 / 9 ) ;

       cout << " Fahrenheit = << b <<"Centigrade = " << a ;

}