up vote 9 down vote favorite
1
share [g+] share [fb]

I'm using C# and I need to round a double to nearest five. I can't find a way to do it with the Math.Round function. How can I do this?

What I want:

70 = 70
73.5 = 75
72 = 70
75.9 = 75
69 = 70

and so on..

Is there an easy way to do this?

link|improve this question

0% accept rate
feedback

3 Answers

Try

Math.Round(value / 5.0) * 5;

Hope this helps!

Regards,

Sebastiaan

link|improve this answer
1  
This method should work for any number: Math.Round( value / n ) * n (see here: stackoverflow.com/questions/326476/…) – TK. Oct 7 '09 at 13:55
feedback

This works:

5* (int)Math.Round(p / 5.0)
link|improve this answer
1  
+1 because int is better than decimal and in sebastiaan's example one need to cast which would result in something like your example. so yours is the complete one. – J. Random Coder Oct 7 '09 at 13:54
+1 yep it is indeed better. – user275587 Jun 9 '10 at 8:57
feedback

Here is a simple program that allows you to verify the code. Be aware of the MidpointRounding parameter, without it you will get rounding to the closest even number, which in your case means difference of five (in the 72.5 example).

    class Program
    {
        public static void RoundToFive()
        {
            Console.WriteLine(R(71));
            Console.WriteLine(R(72.5));  //70 or 75?  depends on midpoint rounding
            Console.WriteLine(R(73.5));
            Console.WriteLine(R(75));
        }

        public static double R(double x)
        {
            return Math.Round(x/5, MidpointRounding.AwayFromZero)*5;
        }

        static void Main(string[] args)
        {
            RoundToFive();
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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