How do I change a rounded number (decimal number) to an integer?
Example:  (round 60.76) ==> 61.0     want  ==> 61
For:
#(define  try  (/ (round 60.76) 64))
#(write try)
==> 0.953125
Want
==> 61/64

Thank you, ƒg

Reply via email to