-1
votes
2answers
65 views
Adding text to this line
I'm a novice so please excuse the simplicity of this. I am trying to get a total ammount, trim the excess decimal places than append some text.. it all works until I try ROUND it
…
2
votes
10answers
142 views
Precision nightmare in Java and MSSQL
Hi everyone,
I've been struggling with precision nightmare in Java and MSSQL up to the point when I don't know anymore. Personally, I understand the issue and the underlying reaso …
2
votes
2answers
144 views
Faster implementation of Math.round?
Are there any drawbacks to this code, which appears to be a faster (and correct) version of java.lang.Math.round?
public static long round(double d) {
if (d > 0) {
…
0
votes
4answers
84 views
How to properly display a price up to two decimals (cents) including trailing zeros in Java?
There is a good question on rounding decimals in Java here. But I was wondering how can I include the trailing zeros to display prices in my program like: $1.50, $1.00
The simple …
1
vote
3answers
32 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
342 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
115 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
46 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 …
3
votes
7answers
309 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 …
6
votes
2answers
90 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
409 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?
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
1answer
86 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
197 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
7answers
753 views
Rounding a double to 5 decimal places
How do I round a double to 5 decimal places, without using DecimalFormat?
