How to round a integer to the close hundred?

C#.NetMath

C# Problem Overview


I don't know it my nomenclature is correct! Anyway, these are the integer I have, for example :

76
121
9660

And I'd like to round them to the close hundred, such as they must become :

100
100
9700

How can I do it faster in C#? I think about an algorithm, but maybe there are some utilities on C#?

C# Solutions


Solution 1 - C#

Try the Math.Round method. Here's how:

Math.Round(76d / 100d, 0) * 100;
Math.Round(121d / 100d, 0) * 100;
Math.Round(9660d / 100d, 0) * 100;

Solution 2 - C#

I wrote a simple extension method to generalize this kind of rounding a while ago:

public static class MathExtensions
{
    public static int Round(this int i, int nearest)
    {
        if (nearest <= 0 || nearest % 10 != 0)
            throw new ArgumentOutOfRangeException("nearest", "Must round to a positive multiple of 10");

        return (i + 5 * nearest / 10) / nearest * nearest;
    }
}

It leverages integer division to find the closest rounding.

Example use:

int example = 152;
Console.WriteLine(example.Round(100)); // round to the nearest 100
Console.WriteLine(example.Round(10)); // round to the nearest 10

And in your example:

Console.WriteLine(76.Round(100)); // 100
Console.WriteLine(121.Round(100)); // 100
Console.WriteLine(9660.Round(100)); // 9700

Solution 3 - C#

Try this expression:

(n + 50) / 100 * 100

Solution 4 - C#

Just some addition to @krizzzn's accepted answer...

Do note that the following will return 0:

Math.Round(50d / 100d, 0) * 100;

Consider using the following and make it return 100 instead:

Math.Round(50d / 100d, 0, MidpointRounding.AwayFromZero) * 100;

Depending on what you're doing, using decimals might be a better choice (note the m):

Math.Round(50m / 100m, 0, MidpointRounding.AwayFromZero) * 100m;

Solution 5 - C#

I know this is an old thread. I wrote a new method. Hope this will be useful for some one.

        public static double Round(this float value, int precision)
        {
            if (precision < -4 && precision > 15)
                throw new ArgumentOutOfRangeException("precision", "Must be and integer between -4 and 15");

            if (precision >= 0) return Math.Round(value, precision);
            else
            {
                precision = (int)Math.Pow(10, Math.Abs(precision));
                value = value + (5 * precision / 10);
                return Math.Round(value - (value % precision), 0);
            }
        }

Example:

    float value = 6666.677777F;
    Console.Write(value.Round(2)); //6666.68
    Console.Write(value.Round(0)); //6667
    Console.Write(value.Round(-2)); //6700 

Solution 6 - C#

Hi i write this extension this gets the next hundred for each number you pass

/// <summary>
    /// this extension gets the next hunfìdred for any number you whant
    /// </summary>
    /// <param name="i">numeber to rounded</param>
    /// <returns>the next hundred number</returns>
    /// <remarks>
    /// eg.:
    /// i =   21 gets 100
    /// i =  121 gets 200
    /// i =  200 gets 300
    /// i = 1211 gets 1300
    /// i = -108 gets -200
    /// </remarks>
    public static int RoundToNextHundred(this int i)
    {
        return i += (100 * Math.Sign(i) - i % 100);
        //use this line below if you want RoundHundred not NEXT
        //return i % 100 == byte.MinValue? i : i += (100 * Math.Sign(i) - i % 100);
    }

    //and for answer at title point use this algoritm
    var closeHundred = Math.Round(number / 100D)*100;

    //and here the extension method if you prefer
    
    /// <summary>
    /// this extension gets the close hundred for any number you whant
    /// </summary>
    /// <param name="number">number to be rounded</param>
    /// <returns>the close hundred number</returns>
    /// <remarks>
    /// eg.:
    /// number =   21 gets    0
    /// number =  149 gets  100
    /// number =  151 gets  200
    /// number = -149 gets -100
    /// number = -151 gets -200
    /// </remarks>
    public static int RoundCloseHundred(this int number)
    {
        return (int)Math.Round(number / 100D) * 100;
    }

Solution 7 - C#

If you only want to round integer numbers up (as the OP actually did), then you can resort to this solution:

public static class MathExtensions
{
    public static int RoundUpTo(this int number, int nearest)
    {
        if (nearest < 10 || nearest % 10 != 0)
            throw new ArgumentOutOfRangeException(nameof(nearest), $"{nameof(nearest)} must be a positive multiple of 10, but you specified {nearest}.");

        int modulo = number % nearest;
        return modulo == 0 ? number : modulo > 0 ? number + (nearest - modulo) : number - modulo;
    }
}

If you want to perform floating-point (or decimal) rounding, then resort to the answers of @krizzzn and @Jim Aho.

Solution 8 - C#

int num = 9660;
int remainder = num % 100;
Console.WriteLine(remainder < 50 ? num - remainder : num + (100 -remainder));

Note: I haven't tested this thoroughly.

Solution 9 - C#

I had a similar project internally where the business requirements were to search within the 100's range of a given number and find duplicate DB records. So if the user was using line 856 I would search 800 - 899. If the user was using 8567 I would search 8500 - 8599. Not an exact rounding by 100's, but thought I would include my unique approach as some of these basic coding questions are embedded within a larger business project. To test this I seeded a decimal list from 1 - 99999 and spit the results out into a file.

    /// <summary>
    /// This method accepts an inbound Line Number and returns the line range
    /// in the form of lowest to highest based on 100's
    /// Example would be 9122 returns 9100 - 9199
    /// It's used for generating some additional BOM Temp functionality.
    /// </summary>
    /// <param name="inboundNumber"></param>
    /// <returns></returns>
    public static ProjectLineRange CalculateLineRange(decimal inboundNumber)
    {
        var lineRange = new ProjectLineRange();
        var numberLength = inboundNumber.ToString(CultureInfo.InvariantCulture).Length;

        switch (numberLength)
        {
            case 0: //NULL?
                break;
            case 1: //Represents 1 - 9
                lineRange.LineBottom = 1;
                lineRange.LineTop = 99;
                break;
            case 2: //Represents 10 - 99
                lineRange.LineBottom = 1;
                lineRange.LineTop = 99;
                break;
            case 3: //Represents 100 - 999
                lineRange = CalculateHundredsRange((int)(inboundNumber / 100));
                break;
            case 4: //Represents 1000 - 9999
                lineRange = CalculateThousandsRange(
                    Convert.ToInt32(inboundNumber.ToString(CultureInfo.InvariantCulture).Substring(1, 1)),
                    Convert.ToInt32(inboundNumber.ToString(CultureInfo.InvariantCulture).Substring(0, 1)));
                break;
            case 5: //Represents 10000 - 99999
                lineRange = CalculateTenThousandsRange(
                    Convert.ToInt32(inboundNumber.ToString(CultureInfo.InvariantCulture).Substring(2, 1)),
                    Convert.ToInt32(inboundNumber.ToString(CultureInfo.InvariantCulture).Substring(1, 1)),
                    Convert.ToInt32(inboundNumber.ToString(CultureInfo.InvariantCulture).Substring(0, 1)));
                break;
        }

        return lineRange;
    }

public class ProjectLineRange
    {
       public decimal LineBottom { get; set; }
       public decimal LineTop { get; set; }
    }

    /// <summary>
    /// Helper method to return the range for the 100's place
    /// </summary>
    /// <param name="hundredsPlaceValue"></param>
    /// <returns></returns>
    public static ProjectLineRange CalculateHundredsRange(int hundredsPlaceValue)
    {
        var tempLineRange = new ProjectLineRange();
        tempLineRange.LineBottom = hundredsPlaceValue * 100;
        tempLineRange.LineTop = tempLineRange.LineBottom + 99;

        return tempLineRange;
    }

    /// <summary>
    /// Helper method to return the range for the 100's place when factoring a 1000's number
    /// </summary>
    /// <param name="hundredsPlaceValue"></param>
    /// <param name="thousandsPlaceValue"></param>
    /// <returns></returns>
    public static ProjectLineRange CalculateThousandsRange(int hundredsPlaceValue, int thousandsPlaceValue)
    {
        var tempLineRange = new ProjectLineRange();
        var tempThousands = thousandsPlaceValue * 1000;
        var hundredsRange = CalculateHundredsRange(hundredsPlaceValue);
        tempLineRange.LineBottom = tempThousands + hundredsRange.LineBottom;
        tempLineRange.LineTop = tempThousands + hundredsRange.LineTop;

        return tempLineRange;
    }

    /// <summary>
    /// Helper method to return the range for the 100's place when factoring a 10000's number
    /// </summary>
    /// <param name="hundredsPlaceValue"></param>
    /// <param name="thousandsPlaceValue"></param>
    /// <param name="tenThousandsPlaceValue"></param>
    /// <returns></returns>
    public static ProjectLineRange CalculateTenThousandsRange(int hundredsPlaceValue, int thousandsPlaceValue, int tenThousandsPlaceValue)
    {
        var tempLineRange = new ProjectLineRange();
        var tempThousands = thousandsPlaceValue * 1000;
        var tempTenThousands = tenThousandsPlaceValue * 10000;
        var hundredsRange = CalculateHundredsRange(hundredsPlaceValue);
        tempLineRange.LineBottom = tempTenThousands + tempThousands + hundredsRange.LineBottom;
        tempLineRange.LineTop = tempTenThousands + tempThousands + hundredsRange.LineTop;

        return tempLineRange;
    }

Solution 10 - C#

public static class Maths
{
    public static int Round(this int value, int precision)
    {
        var coef = Math.Pow(10, Math.Abs(precision));
        var x = (int)Math.Round(value / coef, 0);
        return x * (int)coef;
    }
}

var number = 34569;

Debug.WriteLine(number.Round(0));//34569

Debug.WriteLine(number.Round(1));//34570

Debug.WriteLine(number.Round(2));//34600

Debug.WriteLine(number.Round(3));//35000

Debug.WriteLine(number.Round(4));//30000

Debug.WriteLine(number.Round(5));// 0

Debug.WriteLine(number.Round(6));// 0

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmarkzzzView Question on Stackoverflow
Solution 1 - C#krizzznView Answer on Stackoverflow
Solution 2 - C#Jason LarkeView Answer on Stackoverflow
Solution 3 - C#Marcelo CantosView Answer on Stackoverflow
Solution 4 - C#Jim AhoView Answer on Stackoverflow
Solution 5 - C#RaghuView Answer on Stackoverflow
Solution 6 - C#lukaView Answer on Stackoverflow
Solution 7 - C#feO2xView Answer on Stackoverflow
Solution 8 - C#shahkalpeshView Answer on Stackoverflow
Solution 9 - C#ChrisView Answer on Stackoverflow
Solution 10 - C#Rydem StormView Answer on Stackoverflow