摘要:(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
浙公网安备 33010602011771号