What's the proper way to round a decimal in 2 digits but as zero. i.e if the number is 561.82 to be rounded as 562.00 ?
Asked
Active
Viewed 28 times
0
-
2As a value 562 == 562.00 == 562.0000, the only difference is how the number has been formatted as a String. First you round it, and then you format it how you want (sometimes in one step). Note: it makes no sense to add `.00` if these digits are not accurate. – Peter Lawrey Apr 25 '16 at 08:03
-
Definitely not "proper" to show `.00` at the end if you round to full integral values ... – Thilo Apr 25 '16 at 08:08