celcius-to-fahrenheit



Write a function that converts from celcius to fahrenheit. The formula is F = C * 9/5 + 32.


Solution

(define celcius-to-fahrenheit
  (lambda (x)
        (+ 32 (* x (/ 9 5)))))