how do I truncate to the nearest hundredth
|
|
|||||||||||
|
closed as exact duplicate by Shog9 Dec 12 '08 at 17:00 |
|
|
You didn't mention which language you're using, but most languages have a built in round() function of some type that will allow you to specify precision. If it doesn't have round, it will have a floor() function (or cast as integer) to cut off any decimal place, which you can use by first multiplying your value by 100, flooring it, and then dividing by 100 again. |
|||
|
|
|
|
The simplest implementation would be to multiply by 100, round, and divide by 100. Although for the simplest uses this is enough, it has several pitfalls: floating point operation precision, possibly also overflow. |
||
|
|
|
|
( ( n + 50 ) / 100 ) * 100 |
||
|
|
|
|
In C/C++:
You can use pretty much the same idea in any language. Here's Python in case you were wondering:
|
||
|
|
|
How about multiply by 100, then take the integer of that and then divide by 100 again. |
||
|
|
|
|
You should specify the programming language you're using. In Python:
In Java:
In C:
So typically you use the printf-style formatting regardless of language. |
||||||||
|
