Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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??

share|improve this question
1  
If you just want to output the number as a rounded number it seems you can just do std::cout << std::fixed << std::setprecision(0) << -0.9, for example. – Frank Feb 17 '11 at 18:05
12  
Protecting this... New users with brilliant new rounding schemes should read existing answers first. – Shog9 Feb 18 '11 at 20:33
round is available since C++11 in <cmath>. Unfortunately if you are in Microsoft Visual Studio it is still missing: connect.microsoft.com/VisualStudio/feedback/details/775474/… – uvts_cvs Apr 5 at 8:29

14 Answers

up vote 70 down vote accepted

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.

share|improve this answer
17  
This doesn't handle negative numbers correctly. The answer by litb is correct. – Registered User May 22 '09 at 22:02
17  
@InnerJoin: Yes, it handles negative numbers differently to litb's answer, but that doesn't make it "incorrect". – Roddy Jun 10 '09 at 19:59
What if you want to round to some places after the decimal precision? multiply and divide? – Lazer Jun 4 '10 at 11:56
@Lazer: I would be careful to mul-div floating-point values. There's no guarantee that (f * 10) / 10 == f for a floating-point value. That said, a mul-div is probably the easiest way to achieve it... – Andreas Magnusson Jun 11 '10 at 10:42
Adding 0.5 before truncating fails to round to the nearest integer for several inputs including 0.49999999999999994. See blog.frama-c.com/index.php?post/2013/05/02/nearbyintf1 – Pascal Cuoq May 4 at 18:23

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.

share|improve this answer
Um, that's why you add 0.5. – MSN Jan 27 '09 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 '09 at 22:17

Boost offers a simple set of rounding functions.

#include <boost/math/special_functions/round.hpp>

double a = boost::math::round(1.5); // Yields 2.0
int b = boost::math::iround(1.5); // Yields 2 as an integer

For more information, see the Boost documentation.

share|improve this answer

There are 2 problems we are looking at:

  1. rounding conversions
  2. type conversion.

Rounding conversions mean rounding ± float/double to nearest floor/ceil float/double. May be your problem ends here. But if you are expected to return Int/Long, you need to perform type conversion, and thus "Overflow" problem might hit your solution. SO, do a check for error in your function

long round(double x) {
   assert(x >= LONG_MIN-0.5);
   assert(x <= LONG_MAX+0.5);
   if (x >= 0)
      return (long) (x+0.5);
   return (long) (x-0.5);
}

#define round(x) ((x) < LONG_MIN-0.5 || (x) > LONG_MAX+0.5 ?\
      error() : ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))

from : http://www.cs.tut.fi/~jkorpela/round.html

share|improve this answer
A nice reference page :) – tersyon May 29 '10 at 9:05

It may be worth noting that if you wanted an integer result from the rounding you don't need to pass it through either ceil or floor. I.e.,

int round_int( double r ) {
    return (r > 0.0) ? (r + 0.5) : (r - 0.5); 
}
share|improve this answer

You could round to n digits precision with:

double round( double x )
{
const double sd = 1000; //for accuracy to 3 decimal places
return int(x*sd + (x<0? -0.5 : 0.5))/sd;
}
share|improve this answer
1  
Unless your compiler int size defaults to 1024 bits, this ain't gonna be accurate for huge double... – aka.nice Jun 15 '12 at 13:27
I think that is acceptable given when it will be used: If your double value is 1.0 e+19, rounding out to 3 places doesn't make sense. – carleeto Jun 15 '12 at 20:48
1  
sure, but the question is for a generic round, and you can't control how it will be used. There is no reason for round to fail where ceil and floor would not. – aka.nice Jun 17 '12 at 19:59

A certain type of rounding is also implemented in Boost:

#include <iostream>

#include <boost/numeric/conversion/converter.hpp>

template<typename T, typename S> T round2(const S& x) {
  typedef boost::numeric::conversion_traits<T, S> Traits;
  typedef boost::numeric::def_overflow_handler OverflowHandler;
  typedef boost::numeric::RoundEven<typename Traits::source_type> Rounder;
  typedef boost::numeric::converter<T, S, Traits, OverflowHandler, Rounder> Converter;
  return Converter::convert(x);
}

int main() {
  std::cout << round2<int, double>(0.1) << ' ' << round2<int, double>(-0.1) << ' ' << round2<int, double>(-0.9) << std::endl;
}

Note that this works only if you do a to-integer conversion.

share|improve this answer
1  
Boost also offers a set of simple rounding functions; see my answer. – Daniel Wolf May 1 '11 at 16:21

It's available since C++11 in cmath (according to http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3337.pdf)

#include <cmath>
#include <iostream>

int main(int argc, char** argv) {
  std::cout << "round(0.5):\t" << round(0.5) << std::endl;
  std::cout << "round(-0.5):\t" << round(-0.5) << std::endl;
  std::cout << "round(1.4):\t" << round(1.4) << std::endl;
  std::cout << "round(-1.4):\t" << round(-1.4) << std::endl;
  std::cout << "round(1.6):\t" << round(1.6) << std::endl;
  std::cout << "round(-1.6):\t" << round(-1.6) << std::endl;
  return 0;
}

Output:

round(0.5):  1
round(-0.5): -1
round(1.4):  1
round(-1.4): -1
round(1.6):  2
round(-1.6): -2
share|improve this answer

Beware of floor(x+0.5), here is what can happen for odd numbers in range [2^52,2^53]:

-bash-3.2$ cat >test-round.c <<END
#include <math.h>
#include <stdio.h>
int main() {
 double x=5000000000000001.0;
 double y=round(x);
 double z=floor(x+0.5);
 printf("      x     =%f\n",x);
 printf("round(x)    =%f\n",y);
 printf("floor(x+0.5)=%f\n",z);
 return 0;
}
END

-bash-3.2$ gcc test-round.c 
-bash-3.2$ ./a.out
      x     =5000000000000001.000000
round(x)    =5000000000000001.000000
floor(x+0.5)=5000000000000002.000000

This is http://bugs.squeak.org/view.php?id=7134 Use a solution like the one of @konik

EDIT: my own robust version would be something like

double round(double x)
{
    double truncated,roundedFraction;
    double fraction= modf(x, &truncated);
    modf(2.0*fraction, &roundedFraction);
    return truncated + roundedFraction;
}

EDIT 2: Another reason to avoid floor(x+0.5) is given here

share|improve this answer

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;
}
}
share|improve this answer
1  
Didn't you mean pow(10,place) rather than the binary operator ^ in 10^place? 10^2 on my machine gives me 8!! Nevertheless on my Mac 10.7.4 and gcc, the code doesn't work, returning the original value. – Pete855217 Aug 10 '12 at 8:48
//convert the float to a string
//might use stringstream but it looks like it truncates the float to only
//5 decimal points (maybe thats what u want anyway =P)

float MyFloat = 5.11133333311111333;
float NewConvertedFloat = 0.0;
string FirstString = " ";
string SecondString = " ";
stringstream ss (stringstream::in | stringstream::out);
ss << MyFloat;
FirstString = ss.str();

//take out how ever many decimal places you want
//(this is a string it includes the point)
SecondString = FirstString.substr(0,5);
//whatever precision decimal place you want

//convert it back to a float
stringstream(SecondString) >> NewConvertedFloat;
cout << NewConvertedFloat;
system("pause");

It might be an inefficent dirty way of conversion but heck, it works lol. And its good because it applies to the actual float. Not just affecting the output visually.

share|improve this answer

function double round(double) with the use of modf function.

double round(double x)

{

using namespace std;

if ((numeric_limits<double>::max() - 0.5) <= x)
    return numeric_limits<double>::max();

if ((-1*std::numeric_limits<double>::max() + 0.5) > x)
    return (-1*std::numeric_limits<double>::max());

double intpart;
double fractpart = modf(x, &intpart);

if (fractpart >= 0.5)
    return (intpart + 1);
else if (fractpart >= -0.5)
    return intpart;
else
    return (intpart - 1) ;

}

To be compile clean, includes "math.h" and "limits" are necessary. The function works according to a following rounding schema:

  • round of 5.0 is 5.0
  • round of 3.8 is 4.0
  • round of 2.3 is 2.0
  • round of 1.5 is 2.0
  • round of 0.501 is 1.0
  • round of 0.5 is 1.0
  • round of 0.499 is 0.0
  • round of 0.01 is 0.0
  • round of 0.0 is 0.0
  • round of -0.01 is -0.0
  • round of -0.499 is -0.0
  • round of -0.5 is -0.0
  • round of -0.501 is -1.0
  • round of -1.5 is -1.0
  • round of -2.3 is -2.0
  • round of -3.8 is -4.0
  • round of -5.0 is -5.0
share|improve this answer
1  
This is a good solution. I'm not sure that rounding -1.5 to -1.0 is standard though, I would expect -2.0 by symetry. Also I don't see the point of the leading guard, the first two if could be removed. – aka.nice Jun 17 '12 at 20:18
I checked in ISO/IEC 10967-2 standard, open-std.org/jtc1/sc22/wg11/docs/n462.pdf and from appendix B.5.2.4, the rounding function must indeed be symmetric, rounding_F(x) = neg_F(rounding_F(neg_F(x))) – aka.nice Jul 27 '12 at 12:59

If you ultimately want to convert the double output of your round() function to an int, then the accepted solutions of this question will look something like:

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

This clocks in at around 8.88ns on my machine when passed in uniformly random values.

The below is functionally equivalent, as far as I can tell, but clocks in at 2.48ns on my machine, for a significant performance advantage:

int roundint (double r) {
  int tmp = static_cast<int> (r);
  tmp += (r-tmp>=.5) - (r-tmp<=-.5);
  return tmp;
}

Among the reasons for the better performance is the skipped branching.

share|improve this answer
#include <iostream>
using namespace std;

int main()
{
  double v = 25.5; // this is the value to be rounded of to 26
  double y = 12.4; // this is the value to be rounded of to 12
  int roundV = (int)(v + 0.5);
  int roundY = (int)(y + 0.5);
  cout << " Round of " << v << " is " << roundV
       << "\n Round of " << y << " is " << roundY << "\n";
  return 0;
}
share|improve this answer
3  
And if v = -0.9 and y = -1.1, what do you get? – Roddy Feb 18 '11 at 21:39

protected by Shog9 Feb 18 '11 at 19:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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