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

SCIP习题 1.4

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

标签:fine   abs   book   语句   运算符   nbsp   习题   运算   sci   

(define (a-plus-abs-b a b)
(if (> b 0) (+ a b) (- a b))
)
(define (a-plus-abs-b-book a b)
((if (> b 0) + -) a b)
)
(a-plus-abs-b 1 -1)
(a-plus-abs-b-book 1 -1)

 

if语句返回运算符,这也太灵活了.

SCIP习题 1.4

标签:fine   abs   book   语句   运算符   nbsp   习题   运算   sci   

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

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