vote up 3 vote down star

When i do (/ 411 125) , i dont get it in terms of decimal, how do I do that?

flag

65% accept rate

3 Answers

vote up 7 vote down check
user> (float (/ 411 125))
3.288
user> (double (/ 411 125))
3.288
link|flag
vote up 3 vote down

If you use a float for the dividend, you'll get a decimal answer.

(/ 22.0 7) -> 3.142857142857143

There's also the (unchecked-remainder x y) function available.

link|flag
vote up 3 vote down

As documented, integer division yields rational numbers. Try

(/ 411.0 125)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.