vote up 3 vote down star

Is there any way to round up decimal value to its nearest 0.05 value in .Net?

Ex:

7.125 -> 7.15

6.66 -> 6.7

If its now available can anyone provide me the algo?

flag

80% accept rate

4 Answers

vote up 11 vote down check

How about:

Math.ceiling(myValue * 20) / 20
link|flag
Excellent... Thanks – Prashant Sep 19 at 12:32
predator4: That seems to be what the OP wants, with the 6.66 -> 6.7 example. – caf Sep 19 at 13:36
@predator4: Its correct in my scenario (Tax calculation) – Prashant Sep 19 at 13:50
Sorry. Fair enough, I've missunderstood the round up thing. To reduce confusion I've deleted my comment. – predator4 Sep 19 at 14:08
It should be noted that while this is a very good solution for the problem of rounding to arbitrary fractions, for decimal place rounding Math.Round should be used (just in case anyone comes looking at this question for a solution to more standard rounding). – ICR Sep 19 at 14:32
show 1 more comment
vote up 2 vote down

Duplicated here and here for ruby and python. It shouldn't be too different.

link|flag
vote up 0 vote down

Have you looked at what's available from the static Math class?

link|flag
vote up -3 vote down

According to the example you have mention in your question here is my solution

double  dblMyValue = 6.66;
        int intAfterDecimal = (dblMyValue.ToString().Length -dblMyValue.ToString().IndexOf('.')  -2);
        dblMyValue = Math.Round(dblMyValue,intAfterDecimal);

Hope that will help.

link|flag
1  
String operations ... seriously? – Joren Sep 19 at 13:04
The Daily WTF has numerous examples of string-maths in production code – Charlie Somerville Sep 19 at 13:20
Well, if it works... However, in this case it doesn't actually work, and doing it numerically is so much simpler... – Guffa Sep 19 at 14:14

Your Answer

Get an OpenID
or

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