1
vote
3answers
25 views
How to round with no trailing zeros in SQL Server 2005?
How to round with no trailing zeros in SQL Server 2005?
select round(100.5555, 2)
...yields 100.55**00**. How to get rid of the zeros?
0
votes
3answers
202 views
php float calculation 2 decimal point
Hi everyone,
Got another math calculation problem again.
$a = 34.56
$b = 34.55
$a do some calculation to get this figure
$b is doing rounding nearest 0.05 to get this figure
w …
0
votes
2answers
99 views
Rounding Error in C#: Different results on different PCs
I have a function in C# that returns the following:
...
float amount = smallestPercentage * (float)quantity;
return (int)amount;
Now I know I am suppose to use Convert.Int32(amo …
0
votes
2answers
38 views
SQL rounding and truncation, needs a thorough explanation
Hello. I'm a novice when it comes to SQL and PHP, and I'm trying to round an average price result and take off the extra zeroes that currently appear.
Currently my result turns u …
5
votes
2answers
75 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 …
-1
votes
4answers
401 views
round a number to two decimal places
How do I write a program that takes a positive number with a fractional part and rounds it to two decimal places?
3
votes
7answers
273 views
sin, cos, tan and rounding error
I'm doing some trigonometry calculations in C/C++ and am running into problems with rounding errors. For example, on my Linux system:
#include <stdio.h>
#include <math.h …
3
votes
1answer
82 views
Rounding to the Nearest Ending Digits
I have the following function that rounds a number to the nearest number ending with the digits of $nearest, and I was wondering if there is a more elegant way of doing the same.
…
1
vote
5answers
183 views
C# - Math.Round
Hello,
I am trying to understand how to round to the nearest tenths position with C#. For instance, I have a value that is of type double. This double is currently set to 10.75. H …
3
votes
3answers
200 views
Round to nearest five C#
Hi!
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 = 7 …
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!
3
votes
7answers
605 views
Rounding a double to 5 decimal places
How do I round a double to 5 decimal places, without using DecimalFormat?
0
votes
4answers
120 views
Sprintf in Ruby
Sort of a quick question. I'm writing:
puts "%.3f %.4f %.5f" % [3.998877, 3.998877, 3.998877]
and get the following output:
3.999 3.9989 3.99888
sprintf simply rounds the num …
1
vote
5answers
122 views
Is it possible to round a double using just a printf statement?
Obviously this is just a fraction of the code.
printf("Please enter a positive number that has a fractional part with three or more decimal places\n");
scanf("%5.2d", &x);
pri …
3
votes
4answers
336 views
How to round decimal value up to nearest 0.05 value??
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?
