[language] HTDP错误

silentpassing 2011-01-10

HTDP 4.3有个错误

原文:

Here are two simple examples:

 
(cond
  [(<= n 1000) .040]
  [(<= n 5000) .045]
  [(<= n 10000) .055]
  [(> n 10000) .060])
                        
(cond
  [(<= n 1000) .040]
  [(<= n 5000) .045]
  [(<= n 10000) .055]
  [else .060])
 

If we replace n with 20000, the first three conditions evaluate to false in both expressions. For the expression on the left the fourth condition, (> 20000 10000), evaluates to true and therefore the answer is 0.60.

 

最后的0.60不对,应该是0.06

 

虽然不是什么大的错误 但是这个错误错的也太低级了吧 我希望是排版错误 可是网上的在在线图书也是这个错误 

这是很久前的书 怎么这么长时间了 都没人挑毛病呢 还是看的不仔细呢 

 

治学要严谨 这是我的一贯态度 希望圈友不要批斗我“鸡蛋里挑骨头” 嘻嘻

 

Global site tag (gtag.js) - Google Analytics