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