16
votes
10answers
3k views
In C#: Math.Round(2.5) result is 2 (instead of 3)! Are you kidding me?
In C#, the result of Math.Round(2.5) is 2.
It is supposed to be 3, isn't it? Is this a C# bug or something?
Thanks!
16
votes
9answers
752 views
How to round floats to integers while preserving their sum?
Let's say I have an array of floating point numbers, in sorted (let's say ascending) order, whose sum is known to be an integer N. I want to "round" these numbers to integers while leaving their sum …
9
votes
3answers
310 views
Why do round() and ceil() not return an integer ?
Once in a while, I find myself rounding some numbers, and I always have to cast the result to an integer :
int rounded = (int) floor(value);
Why do all rounding functions (ceil(), floor()) return a …
7
votes
2answers
105 views
MS Access Rounding Precision With Group By
Why doesn't the average of the score of an employee of each month, when summed, equal the average of the employees score (ever)?
Average
SELECT Avg(r.score) AS rawScore
FROM (ET INNER JOIN Employee …
6
votes
8answers
346 views
Why does the order affect the rounding when adding multiple doubles in C#
Consider the following C# code:
double result1 = 1.0 + 1.1 + 1.2;
double result2 = 1.2 + 1.0 + 1.1;
if (result1 == result2)
{
...
}
result1 should always equal result2 right? The thing is, it …
6
votes
5answers
5k views
round() for float in C++
I need a simple floating point rounding function, thus:
double round(double);
round(0.1) = 0
round(-0.1) = 0
round(-0.9) = -1
I can find ceil() and floor() in the math.h - but not round().
Is it …
6
votes
1answer
140 views
How do I round a number up in PHP?
I need to round any non-integers up to the nearest integer, regardless of whether the number after the decimal place is >5 or not. Thanks!
6
votes
6answers
8k views
How do you round a number to two decimal places in C#?
I want to do this using the Math.Round function
6
votes
6answers
691 views
Is it correct to compare two rounded floating point numbers using the == operator?
Or is there a chance that the operation will fail?
Thanks.
I chose the wrong term and what I really meant was rounding to 0, not truncation.
The point is, I need to compare the integer part of two …
5
votes
2answers
1k views
Integer division rounding with negatives in C++
Suppose a and b are both of type int, and b is nonzero. Consider the result of performing a/b in the following cases:
a and b are both nonnegative.
a and b are both negative.
Exactly one of them is …
5
votes
6answers
1k views
Rounding negative numbers in Java
According to Wikipedia when rounding a negative number, you round the absolute number. So by that reasoning, -3.5 would be rounded to -4. But when I use java.lang.Math.round(-3.5) returns -3. Can …
5
votes
9answers
11k views
How to round a number to n decimal places in Java
What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. This is the standard …
4
votes
6answers
365 views
Rounding to even in C#
I'm not seeing the result I expect with Math.Round.
return Math.Round(99.96535789, 2, MidpointRounding.ToEven); // returning 99.97
As I understand MidpointRounding.ToEven, the 5 in the thousandths …
4
votes
6answers
696 views
How do I round a float up to the nearest int in C#?
In C#, how do I round a float to the nearest int?
I see Math.Ceiling and Math.Round, but these returns a decimal. Do I use one of these then cast to an Int?
4
votes
5answers
4k views
Round a double to x significant figures after decimal point
If I have a double (234.004223) etc.
I would like to round this to x significant digits after the decimal places in C#
So far I can only find ways to round to x decimal places but this simply removes …
