exam2.3.3

278阅读 0评论2011-12-05 maunix
分类:LINUX

  1. ;; mht created on Nov 8, 2011

  2. ;; total-profit : number -> number
  3. ;; to compute the income of attendees produce
  4. (define (total-profit n)
  5.   (- (* 5 n) (+ 20 (* 0.5 n))))

  6. (total-profit 100)
上一篇:exam2.3.2
下一篇:exam2.4.1