Advertisement
CrlitosGPro

Untitled

Jun 27th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ;; Autor: Carlos Guerrero Ingeniería de Sistemas
  2. ;; Fecha de creación: 27/06/2020
  3. ;; Contrato: operacion1: numero+numero-numero=numero
  4. ;; Propósito: Este programa recibe tres números y retorna el resultado de una suma y una resta.
  5. ;; Ejemplo: (operacion1 (- (+ 5 8) 10) retorna 3
  6. (define A 5)
  7. (define B 8)
  8. (define C 10)
  9. (define operacion1 (- (+ A B) C))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement