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