Closed DeathKing closed 2 years ago
(define (sum term a next)
(define (iter j ans)
(if (> j b)
ans
(iter (next j)
(+ (term j) ans))))
(iter a 0))
中间提到iterative的写法如上,是不是定义sum的时候少了一个b?
@darktef 是的。
同学们请在这里写下关于《Lec2a:高阶过程》课程的相关疑惑。