SCIP习题 1.4
Posted ...............洋葱的秋秋空间........
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SCIP习题 1.4相关的知识,希望对你有一定的参考价值。
(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的主要内容,如果未能解决你的问题,请参考以下文章