Advertisement
AD_Alejandro

Untitled

Sep 3rd, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.38 KB | None | 0 0
  1. ;; Nombre:Alejando Duque
  2. ;; Fecha: 2 de septiembre de 2018
  3. ;; Contrato:numero, numero, numero, numero -> numero
  4. ;; Proposito:dados 4 numeros devolver una (/(a*b) (c+d)
  5. ;; Ejemplos:(define (operacion a b c d ) e))
  6.  
  7. (define (operacion2 a b c d)
  8.                     (/(* a b)(+ c d)))
  9. ;; Pruebas:
  10.  
  11. (check-expect(operacion2 1 2 3 4)0.285714)
  12. (check-expect(operacion2 5 6 7 8)2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement