Homework

You have problems, and we're glad to hear them. Explain the problem, what you have tried, and where you got stuck.
Feel free to share a little info on yourself and the course.
Forum rules
Please respect your teacher's guidelines. Homework is a learning tool. If we just post answers, we aren't actually helping. When you post questions, be sure to show what you have tried or what you don't understand.
Post Reply
Aera
Posts: 1
Joined: Fri Dec 29, 2017 5:51 am

Homework

Post by Aera » Fri Dec 29, 2017 5:56 am

I am new to Lisp and i am self studying, recently i was doing an exercise and i just couldn't get the answer and i looked for the answer and it was 16 i didn't understand how it came to 16.Thank you for anyone for helping me.

10
(+ 5 3 4)
(- 9 1)
(/ 6 2)
(+ (* 2 4) (- 4 6))
(define a 3)
(define b (+ a 1))
(+ a b (* a b))
(= a b)
(if (and (> b a) (< b (* a b)))
b
a)
(cond ((= a 4) 6)
((= b 4) (+ 6 7 a))
(else 25))
(+ 2 (if (> b a) b a))
(* (cond ((> a b) a)
((< a b) b)
(else -1))
(+ a 1))

Post Reply