【SICP练习】122 练习3.53

简介:

练习3-53

原文

Exercise 3.53. Without running the program, describe the elements of the stream defined by

(define s (cons-stream 1 (add-streams s s)))

分析

s是一串2的幂。也就是1、2、4、8、16、32……

目录
相关文章