vote up 0 vote down star

how do I truncate to the nearest hundredth

flag
Please change the question title, or it might get downvoted. It's not really descriptive. – gnud Dec 12 '08 at 16:55
Which programming language are you using? Also, please use more descriptive subject - "I need help" is likely to scare people away. – Piskvor Dec 12 '08 at 16:56
with: truncateTo( 100 ) – Oscar Reyes Dec 12 '08 at 16:56
Truncate what? In what language / script?. Your question will be closed because it is not descriptive. Give us an example of what you expect. Also, re-tag your question as Homework if thats what it is. – Binary Worrier Dec 12 '08 at 16:57
Also, did you mean "hundred", or "hundredth"? 5480.12345 becomes 5400 in the first case, 5480.12 in the other. – Piskvor Dec 12 '08 at 16:59
show 9 more comments

closed as exact duplicate by Shog9 Dec 12 '08 at 17:00

6 Answers

vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

( ( n + 50 ) / 100 ) * 100

link|flag
vote up 0 vote down

In C/C++:

#include <math.h>

double f = 1.1258793;
f = trunc(f * 100) / 100.0;
// POST: f == 1.12

You can use pretty much the same idea in any language. Here's Python in case you were wondering:

f = 1.1258793
f = int(f*100) / 100.0
# POST: f == 1.12
link|flag
You have to do the division first, or you will simply get the original number back. – Ferruccio Dec 12 '08 at 17:01
vote up 0 vote down

How about multiply by 100, then take the integer of that and then divide by 100 again.

link|flag
vote up 1 vote down

You should specify the programming language you're using.

In Python:

print "%.02f" % 3.14159  # prints 3.14

In Java:

System.out.printf("%.02f", 3.14159);  # prints 3.14

In C:

printf("%.02f", 3.14159);  # prints 3.14

So typically you use the printf-style formatting regardless of language.

link|flag
These just format text. They don't actually truncate the number. – tgamblin Dec 12 '08 at 16:58
printf rounds, it doesn't truncate. For example, try printf("%.02f", 3.199). – Robert Gamble Dec 12 '08 at 17:00
Both good points; I answered this way because that was my wild guess about what the questioner was trying to accomplish. If s/he is trying to do math and wants a number floored to the nearest hundredth then my answer is definitely useless. – Eli Courtwright Dec 12 '08 at 17:54
@Eli: Given that the original question said "*truncate* to the nearest hundredth" I don't think the OP even knew what he wanted so this is a fair answer but you should probably point out that this will "round to the nearest hundredth" instead of "truncate after the hundredths". – Robert Gamble Dec 12 '08 at 19:25

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