Ayuda en problemas basicos de programación
Publicado por Dereck (3 intervenciones) el 04/04/2020 03:48:02

Son dos problemas aqui
Valora esta pregunta


-2
#include <iostream>
using namespace std;
int main()
{
float farenheit = 0.0f, aproxCelsius, realCelsius;
do{
aproxCelsius = (farenheit - 30) / 2;
realCelsius = (farenheit - 32) * 5.0 / 9.0;
cout << farenheit << " grafdos farenheit son aproximademante "
<< aproxCelsius << " grados celsius" << endl
<< "Celsius real: " << realCelsius << endl << endl;
farenheit++;
} while ((realCelsius - aproxCelsius) < 4 );
return EXIT_SUCCESS;
}