I'm having problems rounding. I have a float, which I want to round to the hundredth of a decimal. However, I can only use .round which basically turns it into an int, meaning 2.34.round # => 2. Is there a simple effect way to do something like 2.3465 # => 2.35
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
When displaying, you can use (say)
If you want to store it rounded, you can use
|
|||||
|
|
Pass an argument to round containing the number of decimal places to round to
|
|||||||||||||||
|
|
what about |
|||||||
|
|
You can add a method in Float Class, I catched this from stackoverflow:
|
|||
|
|