摘要: Ch1.1 程序设计的基本元素习题:1.1(+ 5 3 4)12(- 9 1)8(/ 6 2)3(+ (*2 4) (- 4 6 ))-16(define a 3)a=3(define b (+ a 1 ))b=4(if (and (>b a) (< b ( * a b ))) b a)4(cond ((= a 4) 6) ((= b 4) ( + 6 7 a)) (else 25))16(+ 2 ( if ( > b a ) b a ))6(* (cond (( > a b ) a) (( < a b ) b) (else -1)) (+ ... 阅读全文
posted @ 2011-12-30 12:29 BigMan85 阅读(163) 评论(0) 推荐(0) 编辑