-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Convierte grados Fahrenheit a grados Celsius.
1
2
3
4
5
6
2
3
4
5
6
Proceso GradosFahrenheitACelsius
Escribir Sin Saltar "Ingresa el valor de grados fahrenheit:";
Leer grados_fahrenheit;
grados_celsius <- (grados_fahrenheit-32)/1.8;
Escribir "Valor de grados celsius: ", grados_celsius;
FinProceso
Escribir Sin Saltar "Ingresa el valor de grados fahrenheit:";
Leer grados_fahrenheit;
grados_celsius <- (grados_fahrenheit-32)/1.8;
Escribir "Valor de grados celsius: ", grados_celsius;
FinProceso