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

I was curious to know how I can round a number to the nearest tenth whole number. For instance, if I had:

int a = 59 / 4;

which would be 14.75 calculated in floating point; how can I store the number as 15 in "a"?

share|improve this question
1  
Please clarify: The nearest tenth (14.8) or the nearest whole number (15) ? – Carl Smotricz Mar 11 '10 at 5:21
1  
@Carl: since a is an int, it has to be rounded to the nearest whole number, doesn't it? – Jonathan Leffler Mar 11 '10 at 5:33
sorry nearest whole number – Dave Mar 11 '10 at 5:34
2  
@Jonathan: Looks that way, but then why say "to the nearest tenth" in the problem statement? Either the statement is incorrect or there's something the OP wants to do that he's not clearly specifying. That's the idea behind asking for clarification. – Carl Smotricz Mar 11 '10 at 5:45
@Carl: hmm, yes, good point! I am not sure why he is asking about tenths when storing the result in an integer. – Jonathan Leffler Mar 11 '10 at 5:47

6 Answers

up vote 6 down vote accepted
int a = 59.0f / 4.0f + 0.5f;

This only works when assigning to an int as it discards anything after the '.'

share|improve this answer
Thanks this solution worked perfectly for me! – Dave Mar 11 '10 at 5:33
4  
Note that this is FLOATING pointer solution. I recommend that you use integer operation for many reasons. – Yousf Mar 11 '10 at 11:32
What problems? I've used this before and have never encountered a problem. – 0xC0DEFACE Mar 12 '10 at 1:05
2  
Because on systems without a FPU, this makes really, really, bad code. – Michael Dorgan Nov 18 '11 at 23:55
2  
that's the problem. the OP's question is solvable without using any floating point at all, and so will not be dependent on FPU support being present or being good. also, faster (in the event that lots of these need to be calculated) on most architectures, including those with otherwise fantastic FPU support. also note that your solution could be problematic for larger numbers where floats cannot accurately represent the integer values given. – Sean Middleditch Mar 21 '12 at 10:17
show 1 more comment

The standard idiom for integer rounding up is:

int a = (59 + (4 - 1)) / 4;

You add the divisor minus one to the dividend.

share|improve this answer
1  
What if you want to perform a mathematical round (14.75 to 15, 14.25 to 14)? – Chris Lutz Mar 11 '10 at 5:24
5  
Ugh...then you have to think...add (n - 1) / 2, more or less. For n == 4, you want x % n ∈ { 0, 1 } to round down, and x % n ∈ { 2, 3 } to round up. So, you need to add 2, which is n / 2. For n == 5, you want x % n ∈ { 0, 1, 2 } to round down, and x % n ∈ { 3, 4 } to round up, so you need to add 2 again...hence: int i = (x + (n / 2)) / n;? – Jonathan Leffler Mar 11 '10 at 5:32
What about negative x and/or n? – caf Oct 5 '11 at 5:43
@caf: work it out for yourself. Hint: int abs(int n); (from Standard C) and int signum(int n) { return (n < 0) ? -1 : (n > 0) ? +1 : 0; } might come in handy. – Jonathan Leffler Oct 5 '11 at 7:01
@JonathanLeffler: Right, but it's starting to get surprisingly non-trivial - more so again if you also want to handle the case where x + n / 2 overflows... – caf Oct 6 '11 at 3:33

The above answer is technically correct but will overflow prematurely. You should instead use something like this:

int a = (59 - 1)/ 4 + 1;

I assume that you are really trying to do something more general:

int divide(x, y)
{
   int a = (x -1)/y +1;

   return a;
}

x + (y-1) has the potential to overflow giving the incorrect result; whereas, x - 1 will only underflow if x = min_int...

share|improve this answer
61.0 / 30.0 = 2.03333(3). So round up should be 2, but (61-1)/30+1=3 – nad2000 Sep 19 '12 at 4:33
@nad2000 why would 2.0333.. rounded up be 2? – Gurgeh Nov 6 '12 at 17:20
1  
This does not work if x = 0. The intended result of x/y rounding up if x = 0 is 0. Yet this solution yields a result of 1. The other solution comes up with the correct answer. – David Mar 16 at 3:20

As written, you're performing integer arithmetic, which automatically just truncates any decimal results. To perform floating point arithmetic, either change the constants to be floating point values:

int a = round(59.0 / 4);

Or cast them to a float or other floating point type:

int a = round((float)59 / 4);

Either way, you need to do the final rounding with the round() function in the math.h header, so be sure to #include <math.h>.

share|improve this answer
#define CEIL(a, b) (((a) / (b)) + ((a % b) > 0 ? 1 : 0))

Another useful MACROS (MUST HAVE):

#define MIN(a, b)  (((a) < (b)) ? (a) : (b))
#define MAX(a, b)  (((a) > (b)) ? (a) : (b))
#define ABS(a)     (((a) < 0) ? -(a) : (a))
share|improve this answer
Your parentheses are making me dizzy. – Andrew Feb 19 at 0:37
int divide(x,y){
 int quotient = x/y;
 int remainder = x%y;
 if(remainder==0)
  return quotient;
 int tempY = divide(y,2);
 if(remainder>=tempY)
  quotient++;
 return quotient;
}

eg 59/4 Quotient = 14, tempY = 2, remainder = 3, remainder >= tempY hence quotient = 15;

share|improve this answer
1  
PS. "thus" and "ergo" sound even loftier than "hence". – luser droog Aug 7 '11 at 8:41
This does not work correctly for negative numbers - consider divide(-59, 4). – caf Oct 5 '11 at 5:42

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.