riverphoenix

导航

 

2013年11月13日

摘要: (define (sum a b) (+ a b))(define (sum-two a b c) ( cond ((and (> (sum a b) (sum a c)) (> (sum a b) (sum b c))) (sum a b)) ((and (> (sum a c) (sum a b)) (> (sum a c) (sum b c))) (sum a c)) (else (sum b c)) ))(sum-two 1 2 3) 阅读全文
posted @ 2013-11-13 23:27 riverphoenix 阅读(117) 评论(0) 推荐(0) 编辑