Posted by :
Jason
miércoles, 13 de julio de 2016
Convertir grados Fahrenheit a Centígrados
f=(c-32)*5/9
Fórmula para Celsius
c=5/9 (F-32)
Código:
using namespace std;
int main()
{
int f,c;
cout <<" ingrese grados fahrenheit: ";
cin >> c ;
f= (c-32)*5/9;
cout <<"En CELSIUS ES IGUAL a :" << f << endl;
return 0;
}