Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
819 views
in Technique[技术] by (71.8m points)

rounding - What is the best way to round numbers in Clojure?

This is an easy one. But anyway, I think it is a good idea to have this question answered here for a faster, easier reference.

This operation:

(/ 3 2)

yields this:

3/2

I need one function to round up, which would yield 2 and another one to round down, which would yield 1.

question from:https://stackoverflow.com/questions/28551000/what-is-the-best-way-to-round-numbers-in-clojure

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can java interop (Math/(floor|ceil). E.g.:

user=> (int (Math/floor (/ 3 2)))
1
user=> (int (Math/ceil (/ 3 2)))
2

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...