Built in .Net algorithm to round value up to the nearest 10 interval - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T18:02:08Zhttp://stackoverflow.com/feeds/question/274439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval2Built in .Net algorithm to round value up to the nearest 10 intervalNgu Soon Hui2008-11-08T06:05:52Z2009-11-26T14:30:12Z
<p>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. </p>
<p>I can easily do it by hand</p>
<pre><code>return ((int)( number/10))*10
</code></pre>
<p>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. </p>
http://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval/274447#2744472Answer by Raymond Martineau for Built in .Net algorithm to round value up to the nearest 10 intervalRaymond Martineau2008-11-08T06:18:12Z2009-03-03T18:41:23Z<p>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.</p>
<p>If you just want to do integer math and are rounding it to ten, try (x+10/2)/10*10.</p>
<p><strong>Edit:</strong> 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. </p>
http://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval/274453#274453-1Answer by Atomiton for Built in .Net algorithm to round value up to the nearest 10 intervalAtomiton2008-11-08T06:22:17Z2008-11-08T07:30:36Z<p>Use Math.Ceiling to always round up.</p>
<pre><code>int number = 236;
number = (int)(Math.Ceiling(number / 10.0d) * 10);
</code></pre>
<p>Modulus(%) gets the remainder, so you get: </p>
<pre><code>// number = 236 + 10 - 6
</code></pre>
<p>Put that into an extension method </p>
<pre><code>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();
</code></pre>
<p>above edited: I should've gone with my first instinct to use Math.Ceiling</p>
<p>I <a href="http://atomiton.blogspot.com/2007/12/calculating-checkdigit-using.html" rel="nofollow">blogged about this when calculating UPC check digits</a>.</p>
http://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval/274487#2744879Answer by Chris Charabaruk for Built in .Net algorithm to round value up to the nearest 10 intervalChris Charabaruk2008-11-08T07:13:29Z2009-03-03T09:33:57Z<p>There is no built-in function in the class library that will do this. The closest is <a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow">System.Math.Round()</a> 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.</p>
<pre><code>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
</code></pre>
<p>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:</p>
<pre><code>int roundedNumber = ExtensionMethods.RoundOff(236); // returns 240
int roundedNumber2 = ExtensionMethods.RoundOff(11); // returns 10
</code></pre>
http://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval/1788392#17883920Answer by Jronny for Built in .Net algorithm to round value up to the nearest 10 intervalJronny2009-11-24T07:16:18Z2009-11-26T14:30:12Z<p>This might be a little too late but I guess this might be of good help someday...</p>
<p>I have tried this:</p>
<pre><code>public int RoundOff(int number, int interval){
int remainder = number % interval;
number += (remainder < interval / 2) ? -remainder : (interval - remainder);
return number;
}
</code></pre>
<p>To use:</p>
<pre><code>int number = 11;
int roundednumber = RoundOff(number, 10);
</code></pre>
<p>This way, you have the option whether if the half of the interval will be rounded up or rounded down. =)</p>