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