vote up 5 vote down star
3

I need a simple floating point rounding function, thus:

double round(double);

round(0.1) = 0
round(-0.1) = 0
round(-0.9) = -1

I can find ceil() and floor() in the math.h - but not round().

Is it present in the standard C++ library under another name, or is it missing??

flag

71% accept rate

5 Answers

vote up 6 vote down check

There's no round() in the C++ std library. You can write one yourself though:

double round(double d)
{
  return floor(d + 0.5);
}

The probable reason there's no round in the C++ std library is that it can in fact be implemented in different ways. The above is one common way, but there are others as round-to-even which is less biased and generally better if you're going to do a lot of rounding. It's a bit more complex to implement, though.

link|flag
2  
This doesn't handle negative numbers correctly. The answer by litb is correct. – InnerJoin May 22 at 22:02
2  
@InnerJoin: Yes, it handles negative numbers differently to litb's answer, but that doesn't make it "incorrect". – Roddy Jun 10 at 19:59
vote up 15 vote down

There is a round function for C99, which will be available in the next C++ too. You can however create such a function manually quite easy:

double round(double r) {
    return (r > 0.0) ? floor(r + 0.5) : ceil(r - 0.5);
}

Edit 1: As xtofl notes, this can be called a symmetrical round.

Edit 2: You can also use floor(n + 0.5). It will round halfway numbers such as -0.5 up to 0.0. The function above will round them down to -1.0 . That's how the C99 round function works (rounding halfway numbers always away from zero). I don't know what makes more sense though, but i think it depends on the use of the function.

link|flag
Nice to notice: this is a symmetrical round. – xtofl Jan 27 at 22:15
(-0.1) + 0.5 == 0.4. floor(0.4) == 0.0. (-0.1) + (-0.5) == -0.6. floor(-0.6) == -1.0. – Andreas Magnusson Jan 27 at 22:23
floor(n + 0.5) WILL work for negative numbers, but (int)(n+0.5) doesn't. The floor() approach /is/ correct, AFAICT. – Roddy Jan 27 at 22:34
roddy, can you please elaborate? floor will return the greatest integer not greater than its argument. it's not what the OP asked for. – Johannes Schaub - litb Jan 27 at 22:42
fixed it to use ceil and floor depending on the sign. could have come to this solution well earlier though. now i'm really ashamed not seeing that simple floor thingy tho :) let's have a coffee for that hehe – Johannes Schaub - litb Jan 27 at 23:20
vote up 14 vote down

It's usually implemented as floor(value + 0.5).

Edit: and it's probably not called round since there are at least three rounding algorithms I know of: round to zero, round to closest integer, and banker's rounding. You are asking for round to closest integer.

MSN

link|flag
Um, that's why you add 0.5. – MSN Jan 27 at 22:12
It's good to make the distinction between different versions of 'round'. It's good to know when to pick which, too. – xtofl Jan 27 at 22:17
vote up 0 vote down

what i did was

#include <cmath.h>
using namespace std;


    double roundh(double number,int place){
/*place = decimal point. putting in 0 will make it round to whole number. putting in 1 will round to the tenths digit.*/

    number *= 10^place;
    int istack = (int)floor(number);
    int out = number-istack;
if (out < 0.5){
floor(number);
number /= 10^place;
return number;
}
if (out > 0.4) {
ceil(number);
number /= 10^place;
return number;
}
}
link|flag
vote up 0 vote down

rint function from cmath ?

link|flag

Your Answer

Get an OpenID
or

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