vote up 2 vote down star
2

How to, in C# round up any value to 10 interval? For example, if I have 11, I want it to return 10, if I have 136, then I want it to return 140.

I can easily do it by hand

return ((int)( number/10))*10

But I am looking for an builtin algorithm to do this job, something like Math.Round(). The reason why I won't want to do by hand is that I don't want to write same or similar piece of code all over my projects, even for something as simple as the above.

flag

49% accept rate
1  
If it works, why do you need something else? Just wrap it up in an extension method or common library and run with it – John Sheehan Nov 8 '08 at 6:09
((number + 5)/10) * 10 -- good reason to find a built-in. :-) – Adam Liss Nov 8 '08 at 6:10
I noticed there's confusion with this question, and you probably should edit the title or posting to make it more clear. In particular, do you want to always round up, or round to the nearest 10? – Raymond Martineau Nov 8 '08 at 6:28
Raymond, based on the actual content of the question, rather than the title, it's obvious that it's about rounding to the nearest 10. But I've noticed that ambiguity, too, and agree the title should be altered to fit. – Chris Charabaruk Nov 8 '08 at 6:59
@Adam: What is wrong with wrapping a simple and straightforward line of code in a method? Doesn't look tricky or confusing to me. – Ed Swangren Nov 24 at 7:23

4 Answers

vote up 9 vote down check

There is no built-in function in the class library that will do this. The closest is System.Math.Round() which is only for rounding numbers of types Decimal and Double to the nearest integer value. However, you can wrap your statement up in a extension method, if you are working with .NET 3.5, which will allow you to use the function much more cleanly.

public static class ExtensionMethods
{
    public static int RoundOff (this int i)
    {
        return ((int)Math.Round(i / 10.0)) * 10;
    }
}

int roundedNumber = 236.RoundOff(); // returns 240
int roundedNumber2 = 11.RoundOff(); // returns 10

If you are programming against an older version of the .NET framework, just remove the "this" from the RoundOff function, and call the function like so:

int roundedNumber = ExtensionMethods.RoundOff(236); // returns 240
int roundedNumber2 = ExtensionMethods.RoundOff(11); // returns 10
link|flag
There's a bunch of problems with this code, namely it doesn't compile (missing return type) and it doesn't round to the nearest. In your example, it returns 230 and 10. – Dave Van den Eynde Mar 3 at 8:43
Fixed, try it now. – Chris Charabaruk Mar 3 at 9:38
It still won't return 240, because you're rounding down. – Dave Van den Eynde Mar 3 at 11:56
Actually run it. Here's the source (including a test class), and even a build of the source. It works, and correctly. labs.coldacid.net/code/… – Chris Charabaruk Mar 3 at 15:34
Also, read the docs for Math.Round(). – Chris Charabaruk Mar 3 at 15:36
show 3 more comments
vote up 2 vote down

Rounding a float to an integer is similar to (int)(x+0.5), as opposed to simply casting x - if you want a multiple of 10, you can easily adapt that.

If you just want to do integer math and are rounding it to ten, try (x+10/2)/10*10.

Edit: I noticed that this response doesn't meet the original's author's request, and is also a biased form of rounding that I prefer not to do. However, another accepted response already stated Math.round(), a much better solution.

link|flag
I have to say that, even though this is the trick I used in past a lot, Math.Round looks a lot cleaner. – Dave Van den Eynde Mar 3 at 16:02
vote up -1 vote down

Use Math.Ceiling to always round up.

int number = 236;
number = (int)(Math.Ceiling(number / 10.0d) * 10);

Modulus(%) gets the remainder, so you get:

// number = 236 + 10 - 6

Put that into an extension method

public static roundupbyten(this int i){
    // return i + (10 - i % 10); <-- logic error. Oops!
    return (int)(Math.Ceiling(i / 10.0d)*10); // fixed
}

// call like so:
int number = 236.roundupbyten();

above edited: I should've gone with my first instinct to use Math.Ceiling

I blogged about this when calculating UPC check digits.

link|flag
Try it with 240. What do you get then? Or for that matter, 11. – Chris Charabaruk Nov 8 '08 at 6:54
vote up 0 vote down

This might be a little too late but I guess this might be of good help someday...

I have tried this:

public int RoundOff(int number, int interval){
    int remainder = number % interval;
    number += (remainder < interval / 2) ? -remainder : (interval - remainder);
    return number;
}

To use:

int number = 11;
int roundednumber = RoundOff(number, 10);

This way, you have the option whether if the half of the interval will be rounded up or rounded down. =)

link|flag

Your Answer

Get an OpenID
or

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