Solución
KE@diaztaypekenettandre_f93a219c
·hace 4dTypeScriptsolution.tsTypeScript
function celsiusToFahrenheit(celsius: number): number {
// Escribe tu solución aquí
let fahrenheit = (celsius * 9/5) + 32;
return Math.round((fahrenheit + Number.EPSILON) * 100) / 100 ;
}
// No modificar: necesario para evaluar el resultado.
export { celsiusToFahrenheit };0respuestas