- 博客(1)
- 收藏
- 关注
原创 SICP 练习1.8
(define (cubic x) (* x x x)) (define (square x) (* x x)) (define (improve guess x) (/ (+ (/ x (square guess)) (* 2 guess)) 3)) (define (good-enough? guess x) (< (abs (- (cubic guess) x)) 0.001)) (d...
2020-02-26 13:02:01 177
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人