摘要:
(define producti (lambda (f a next b) (define iter (lambda (a result) (if (> a b) result (iter (next a) (* result (f a)))))) (iter a 1)))(define product (lambda (f a next b) (if (> a b) 1 (* (f a) (product f (next a) next b)))))(define facto... 阅读全文
posted @ 2013-03-08 17:26 ASOCS 阅读(184) 评论(0) 推荐(0)
浙公网安备 33010602011771号