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.