码迷,mamicode.com
首页 > 其他好文 > 详细

SCIP习题 1.1

时间:2017-11-22 13:09:02      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ring   icp   lang   ons   UI   ocs   efi   latest   const   

(define a 3)

(define b (+ a 1))

b

(+ a b(* a b))

(= a b)

(if (and (> b a) (< b (* a b)))
b
a)

(cond ((= a 4) 6)
((= b 4) (+ 6 7 a))
(else 25))

(+ 2 (if(> b a) b a))

(* (cond ((> a b) a)
((< a b) b)
(else -1))
(+ a 1))

 

b既是一个变量,又是一个函数.有点神奇.

开始选择了Lazy Racket, b的值是delay.是正则序吗?

后来改成了R5RS, b的值就能正常显示了,有可能是应用序.

(require string-constants)
(set-language-pref ‘simplified-chinese)
执行两行代码,然后重开

找到括号自动补全.嚯嚯嚯

中文upup

 

解题集:http://sicp.readthedocs.org/en/latest/

SCIP习题 1.1

标签:ring   icp   lang   ons   UI   ocs   efi   latest   const   

原文地址:http://www.cnblogs.com/R4mble/p/7878351.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!