This how i solved this problem .I have made another procedure for guess thinking that the number returned by it depends on lsb , csb and msb.Therefore it should be another procedure.<br><br>(define check-guess3 (lambda(lsb csb msb target)<br>
(cond<br> [(< guess(lsb csb msb) target) 'Toosmall]<br> [(= guess(lsb csb msb) target) 'Perfect]<br> [else 'Toolarge])))<br>
(define guess (lambda (lsb csb msb)<br> (+(* msb 100)(* csb 10) (* lsb 1))))<br><br><br><br>Aditya<br><br><br>