Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to implement logic of rounding up to 3 decimal positions after rounding.

If the value of decimal place 1 – 3 is equal to 000 (regardless of the whole number), and the value of the 4th thru the 10th decimal place is greater than 0, the 3rd decimal place in the display will round up.

example:

1.1230000000  --> 1.123
1.1230010000  --> 1.123
1.1230600000  --> 1.124
1.0000010000  --> 1.001
1.0003000000  --> 1.003
5.0000001234  --> 5.001

looking forward

share|improve this question
1  
First, that's a pretty weird "rounding" routine. Second, your example seems to be wrong or I don't understand it. Based on your description you should get 1.124 from 1.1230010000, not 1.123 as in your example. – TToni Nov 23 '10 at 21:56
TToni, you are right...i dont know how I made that mistake. We need to do this jsut for display purpose as we cannot display long numbers. – Kris Nov 23 '10 at 22:02
So can you think of any logic for this?? i know its weird but i hv to do it as requirement... ! – Kris Nov 23 '10 at 22:02
What data type are you using - float, double, or decimal? Depending on the type, a routine that depends on small differences in decimal values would be impossibly flaky due to problems representing decimal fractions in binary. – Ben Nov 23 '10 at 22:04
1.00030000 to 1.003? Or 1.001? – TToni Nov 23 '10 at 22:05
show 4 more comments

1 Answer

up vote 1 down vote accepted
Math.Ceiling(myNumber*1000)/1000;

should do the trick for positive numbers. Test if you get the desired behavior for negative numbers (not given in your examples). If not, use Floor instead of Ceiling for negatives.

share|improve this answer
Thanks TToni. This is perfectly working. simply superb!! – Kris Nov 29 '10 at 16:53
Glad to help out, Kris. – TToni Nov 29 '10 at 16:55
hey TToni, Want to ask one more thing. while I am dividing a double number by another double number, how can i retain the same amount of decimal places after division? – Kris Nov 29 '10 at 17:27
I am sorry. My question is that i want to keep the number after division with exactly 10 decimal places after decimal point. – Kris Nov 29 '10 at 17:29
Is Math.Round(a/b,10) what you are looking for? – TToni Dec 2 '10 at 20:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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