Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Racket 0.16 KB | None | 0 0
  1. (define (ptm a b c)
  2.     (cond
  3.         ((and (< a b) (< a c)) (xd b c))
  4.         ((and (< b a) (< b c)) (xd a c))
  5.         ((and (< c a) (< c b)) (xd a b))
  6.     )
  7. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement