Advertisement
Dsap06

Untitled

Sep 3rd, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.30 KB | None | 0 0
  1. ;Autor: Daniel Alvarez
  2. ;Fecha de creacion: 3 de septiembre
  3. ;Contrato: numero numero numero numero -> numero
  4. ;Proposito: recibir 4 numeros y retorna la operacion a * b / c + d
  5. ;Ejemplos: (f 3 2 1 5) -> 1
  6. ;Pruebas:
  7. (check-expect (f 3 2 1 5) 1)
  8. ;Definicion
  9. (define (f a b c d) (/ ( * a b)(+ c d)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement