saludos a todos, tengo un programa que realizar para una clase de programacion de computadoras . tengo un ejercicio el cual no puedo comprender. me gustaria si son tan amables me pudieran ayudar en esto. aqui le dejo el programa completo por si me desean ayudar
estare eternamente agradecido por su ayuda
// PROGRAM CONVERT CONVERTS A TEMPERATURE IN FAHRENHEIT TO
// CELSIUS AND A TEMPERATURE IN CELSIUS IN FAHRENHEIT.
# include <iostream>
using namespace std;
const int TEMP_IN_F = 32;
const int TEMP_IN_C = 0;
int main ()
{
int fToC; // place to store Celsuis answer
int cToF; // place to store the Fehrenheit answer
cToF = (9 * TEMP_IN_C / 5) + 32;
fToC = 5 * (TEMP_IN_F - 32) / 9;
cout << TEMP_IN_F << " in fahrenheit is " << fToC << " in celsius " << endl;
return 0;
}
]