Код Ревью

Сравни свои решения

    #| This exercise has no tests.
Any solution is a right answer. |#
10
12
8
3
6
N/A a=3
N/A b=4
19
false
    #| This exercise has no tests.
Any solution is a right answer. |#
10
10

(+ 5 3 4)
12

(- 9 1)
8

(/ 6 2)
3

(+ (* 2 4) (- 4 6))
6

(define a 3)
N/A a=3

(define b (+ a 1))
N/A b=4

(+ a b (* a b))
19

(= a b)
false

(if (and (> b a) (< b (* a b)))
    b
    a)
4

(cond ((= a 4) 6)
      ((= b 4) (+ 6 7 a))
      (else 25))
16

(+ 2 (if (> b a) b a))
6

(* (cond ((> a b) a)
         ((< a b) b)
         (else -1))
   (+ a 1))
16
    #| This exercise has no tests.
Any solution is a right answer. |#
10
12
8
3
6
N/A a=3
N/A b=4
19
false
    #| This exercise has no tests.
Any solution is a right answer. |#
10
10

(+ 5 3 4)
12

(- 9 1)
8

(/ 6 2)
3

(+ (* 2 4) (- 4 6))
6

(define a 3)
N/A a=3

(define b (+ a 1))
N/A b=4

(+ a b (* a b))
19

(= a b)
false

(if (and (> b a) (< b (* a b)))
    b
    a)
4

(cond ((= a 4) 6)
      ((= b 4) (+ 6 7 a))
      (else 25))
16

(+ 2 (if (> b a) b a))
6

(* (cond ((> a b) a)
         ((< a b) b)
         (else -1))
   (+ a 1))
16