#include int main( void ) { double fahr = 212, cel; cel = ( 5.0 / 9.0 ) * ( fahr - 32 ); std::cout << fahr << " deg F => " << cel << " deg C\n"; }