What is the best way to round numbers in Clojure? June 5, 2023 by Tarik You can java interop (Math/(floor|ceil). E.g.: user=> (int (Math/floor (/ 3 2))) 1 user=> (int (Math/ceil (/ 3 2))) 2