Usuario:Daniel Mendoza:DrScheme:Ejercicio 3.3.6
Apariencia
;Ejercicio 3.3.6. ;Renombre el programa fahrenheit->celsius del ejercicio 2.2.1. el programa consume una temperatura medida en fahrenheit y ;produce el equivalente en celsius. Desarrollar el programa celsius -> fahrenheit, el cual consume una temperatura medida en ;celsius y produce el equivalente en fahrenheit. ;CONTRATO: celsius-fahrenheit : numero->numero ;PROPOSITO: convierte una temperatura medida en celsius y produce su equivalente en fahrenheit. ;EJEMPLO: ( celsius-fahrenheit -2 ) debe producir 28.4 (define ( celsius-fahrenheit t) (+ (*( / 9 5 ) t ) 32)) (celsius-fahrenheit -2)