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的主要内容,如果未能解决你的问题,请参考以下文章

SCIP习题 1.10

scip习题 scheme和c实现的对比

SCIP习题 1.1

SCIP习题 1.9

SCIP习题 1.21(寻找最小因子)

数据结构与算法分析(C语言描述)习题1.4