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

OK - I'm almost embarrassed posting this here (and I will delete if anyone votes to close) as it seems like a basic question.

Is this the correct way to round up to a multiple of a number in C++?

I know there are other questions related to this but I am specficially interested to know what is the best way to do this in C++:

int roundUp(int numToRound, int multiple)
{
 if(multiple == 0)
 {
  return numToRound;
 }

 int roundDown = ( (int) (numToRound) / multiple) * multiple;
 int roundUp = roundDown + multiple; 
 int roundCalc = roundUp;
 return (roundCalc);
}

Update: Sorry I probably didn't make intention clear. Here are some examples:

roundUp(7, 100)
//return 100

roundUp(117, 100)
//return 200

roundUp(477, 100)
//return 500

roundUp(1077, 100)
//return 1100

roundUp(52, 20)
//return 60

roundUp(74, 30)
//return 90

EDIT: Thanks for all the replies. Here is what I went for:

int roundUp(int numToRound, int multiple)  
{  
 if(multiple == 0)  
 {  
  return numToRound;  
 }  

 int remainder = numToRound % multiple; 
 if (remainder == 0)
  {
    return numToRound; 
  }

 return numToRound + multiple - remainder; 
}  
share|improve this question
1  
You have an error in your logic - let's say I want to round 4 up to the nearest multiple of 2. roundDown = (4/2) * 2 = 4; roundUp = 4 + 2; so roundCalc = 6. I'm assuming that you would want to return 4 in that case. – Niki Yoshiuchi Aug 4 '10 at 15:24
@David Relihan No reason to be embarrassed. We all learn. Thats what the site is here for :) – Eric Dec 23 '12 at 16:17

13 Answers

up vote 38 down vote accepted

This works for positive numbers, not sure about negative. It only uses integer math.

int roundUp(int numToRound, int multiple) 
{ 
 if(multiple == 0) 
 { 
  return numToRound; 
 } 

 int remainder = numToRound % multiple;
 if (remainder == 0)
  return numToRound;
 return numToRound + multiple - remainder;
} 
share|improve this answer
+1 In my opinion, definately the nicest and most readable solution. – David Relihan Aug 4 '10 at 17:28
1  
Add if(number<0){ multiple = multiple*(-1); } at the start to round negative numbers in the right direction – Josh Feb 3 at 13:54

This is a generalization of the problem of "how do I find out how many bytes n bits will take? (A: (n bits + 7) / 8).

int RoundUp(int n, int roundTo)
{
    // fails on negative?  What does that mean?
    if (roundTo == 0) return 0;
    return ((n + roundTo - 1) / roundTo) * roundTo; // edit - fixed error
}
share|improve this answer
1  
This doesn't round up to the next multiple of a number. – aaaa bbbb Aug 4 '10 at 16:07
1  
Fixed that - thanks. – plinth Aug 4 '10 at 16:25
1  
I like this solution because if roundTo will be a power of 2, you can eliminate the / and * and end up with nothing but cheap operations (x = roundTo - 1; return (n+x)&~x;) – Trejkaz Feb 6 at 3:55
int roundUp(int numToRound, int multiple)
{
 if(multiple == 0)
 {
  return 0;
 }
 return ((numToRound - 1) / multiple + 1) * multiple;  
}

And no need to mess around with conditions

share|improve this answer
int round_up(int num, int factor)
{
    return num + factor - 1 - (num - 1) % factor;
}
share|improve this answer
Looks to be the shortest case that handles the 'already-a-multiple' case. – harningt Aug 20 '12 at 12:56

Without conditions:

int roundUp(int numToRound, int multiple) 
{
   return (numToRound + multiple - 1) / multiple * multiple;
}

If n power of 2

int roundUp(int numToRound, int multiple) 
{
   return (numToRound + multiple - 1) & ~(multiple - 1);
}
share|improve this answer

First off, your error condition (multiple == 0) should probably have a return value. What? I don't know. Maybe you want to throw an exception, that's up to you. But, returning nothing is dangerous.

Second, you should check that numToRound isn't already a multiple. Otherwise, when you add multiple to roundDown, you'll get the wrong answer.

Thirdly, your casts are wrong. You cast numToRound to an integer, but it's already an integer. You need to cast to to double before the division, and back to int after the multiplication.

Lastly, what do you want for negative numbers? Rounding "up" can mean rounding to zero (rounding in the same direction as positive numbers), or away from zero (a "larger" negative number). Or, maybe you don't care.

Here's a version with the first three fixes, but I don't deal with the negative issue:

int roundUp(int numToRound, int multiple)
{
 if(multiple == 0)
 {
  return 0;
 }
 else if(numToRound % multiple == 0)
 {
  return numToRound
 }

 int roundDown = (int) (( (double) numToRound / multiple ) * multiple);
 int roundUp = roundDown + multiple; 
 int roundCalc = roundUp;
 return (roundCalc);
}
share|improve this answer
1  
-1: Conversion to double is bizarre and unnecessary. – Peter Ruderman Aug 4 '10 at 16:06
+1 For numToRound % multiple == 0. Good catch – David Relihan Aug 4 '10 at 16:07
@Peter Is it? I assumed that int / int would return an int, which is not what we wanted. – Mike Caron Aug 4 '10 at 17:33
int / int does indeed return an int, but that's precisely what you want. For example, numToRound = 7, multiple = 3. 7 / 3 = 2. – Peter Ruderman Aug 4 '10 at 18:16
int noOfMultiples = int((numToRound / multiple)+0.5);
return noOfMultiples*multiple

C++ rounds each number down,so if you add 0.5 (if its 1.5 it will be 2) but 1.49 will be 1.99 therefore 1.

EDIT - Sorry didn't see you wanted to round up, i would suggest using a ceil() method instead of the +0.5

share|improve this answer

well for one thing, since i dont really understand what you want to do, the lines

int roundUp = roundDown + multiple;
int roundCalc = roundUp;
return (roundCalc); 

could definitely be shortened to

int roundUp = roundDown + multiple;
return roundUp;
share|improve this answer
  float roundUp( float number, float fixedBase ) {
     if (fixedBase != 0 && number != 0) {
        float sign = number>0?1:-1;
        number*=sign;
        number/=fixedBase;
        int fixedPoint = (int)ceil(number);
        number = fixedPoint*fixedBase;
        number*=sign;
     }
     return number;
  }

This works for any float number or base (e.g. you can round -4 to the nearest 6.75). In essence it is converting to fixed point, rounding there, then converting back. It handles negatives by rounding AWAY from 0. It also handles a negative round to value by essentially turning the function into roundDown.

An int specific version looks like:

  int roundUp( int number, int fixedBase ) {
     if (fixedBase != 0 && number != 0) {
        int sign = number>0?1:-1;
        int baseSign=fixedBase>0?1:0;
        number*=sign;
        int fixedPoint = (number+baseSign*(fixedBase-1))/fixedBase;
        number = fixedPoint*fixedBase;
        number*=sign;
     }
     return number;
  }

Which is more or less plinth's answer, with the added negative input support.

share|improve this answer

I found an algorithm which is somewhat similar to one posted above:

int[(|x|+n-1)/n]*[(nx)/|x|], where x is a user-input value and n is the multiple being used.

It works for all values x, where x is an integer (positive or negative, including zero). I wrote it specifically for a C++ program, but this can basically be implemented in any language.

share|improve this answer

Probably safer to cast to floats and use ceil() - unless you know that the int division is going to produce the correct result.

share|improve this answer

For negative numToRound:

It should be really easy to do this but the standard modulo % operator doesn't handle negative numbers like one might expect. For instance -14 % 12 = -2 and not 10. First thing to do is to get modulo operator that never returns negative numbers. Then roundUp is really simple.

public static int mod(int x, int n) 
{
    return ((x % n) + n) % n;
}

public static int roundUp(int numToRound, int multiple) 
{
    return numRound + mod(-numToRound, multiple);
}
share|improve this answer

This works for me but did not try to handle negatives

public static int roundUp(int numToRound, int multiple) {
    if (multiple == 0) {
        return 0;
    } else if (numToRound % multiple == 0) {
    return numToRound;
    }

    int mod = numToRound % multiple;
    int diff = multiple - mod;
    return numToRound + diff;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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