vote up 2 vote down star

Is there any Java function or util class which does rounding this way: func(3/2) = 2

Math.ceil() doesn't help, which by name should have done so. I am aware of BigDecimal, but don't need it.

flag

Thanks every one, – Rig Veda Jul 2 at 13:16
1  
Are you looking for only rounding 0.5 up? or rounding 0.3 up, etc? – jvenema Jul 2 at 13:16
@jvenema: Exactly - most of the proposed solutions assume anything over 1.0 should round to 2. For example, 7/3 is 2.333 but would round to 3. However, given the example from the OP, it's not clear whether this is desired or not. – GalacticCowboy Jul 2 at 15:00
I feel, since he initially tried ceil, that was the functionality he was looking for. – jjnguy Jul 2 at 15:07
yes , that was what I was looking for. Just that I passed wrong arguments. Thanks again everyone. :) – Rig Veda Jul 2 at 15:34

10 Answers

vote up 13 vote down check

Math.ceil() will always round up, however you are doing integer division with 3/2. Thus, since in integer division 3/2 = 1 (not 1.5) the ceiling of 1 is 1.

What you would need to do to achieve the results you want is Math.ceil(3/2.0);

By doing the division by a double amount (2.0), you end up doing floating point division instead of integer division. Thus 3/2.0 = 1.5, and the ceil() of 1.5 is always 2.

link|flag
vote up 7 vote down

A bit of black magic, and you can do it all with integers:

// Divide x by n rounding up
int res = (x+n-1)/n
link|flag
1  
Assuming x is positive! – Niki Jul 2 at 13:22
vote up 4 vote down

Aint this the usual case of integer division? Try Math.Ceil after casting either number to a floating point type.

link|flag
1  
3/2 already only returns 1 (an int), so Math.ceil() does nothing. +1 – AlbertoPL Jul 2 at 13:09
2  
--> "after casting either number to a floating point type" <-- – GalacticCowboy Jul 2 at 13:13
Integer division returns the largest number that evenly divides. Allowing you to use modulus to get the remainder. – Brian Jul 2 at 13:15
vote up 3 vote down

You can always cast first:

Math.ceil((double)3/2)
link|flag
vote up 3 vote down

In Java, 3/2 = 1 because it uses integer division. There's no function that can "fix" this afterwards. What you have to do is to force a float divison and round up the result:

int result = (int)Math.ceil( ((float)3) / ((float)2) );
link|flag
vote up 2 vote down

Math.ceil will help, provided you use floating point numbers. The problem is that 3/2, in integer division, is 1. By the time the value gets to whatever function, be it Math.ceil or something else, the value is simply 1. Any trailing decimal portion is gone.

link|flag
vote up 2 vote down

Many languages "think" like this. If you're dividing an int into an int, then you should get an int (so they truncate and you get 1 as a result).

We all know this is not true, but that's how they work. You can "cheat" them, and do something like casting one of them to a double, or use a double representation: Math.ceil (3.0 / 2) or Math.ceil((double)3/2), as mentioned.

link|flag
vote up 2 vote down

To convert floor division to ceiling division:

(numerator + denominator-1) / denominator

To convert floor division to rounding division:

(numerator + (denominator)/2) / denominator
link|flag
vote up 1 vote down
if (a % b == 0)
{
  return (a / b);
}
else
{
  return (a / b) + 1;
}

Exploits integer division to do what you want. I don't know of a math function that does this, but why not roll your own?

link|flag
vote up -1 vote down

Have you tried Math.floor() ?

link|flag
This is the opposite behavior of what he wants. – Brian Jul 2 at 13:15

Your Answer

Get an OpenID
or

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