0
votes
5answers
31 views
ASP Round function not behaving as expected
I'm rounding up my decimal values to integer values
ex:
I have 5 numbers whose % sum should end up being 100% but i get 101% my values are
11.11111, 80.55555, 5.55555, 2.77777
and on rounding …
4
votes
6answers
5k 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 …
0
votes
3answers
33 views
How to round a DateTime in MySQL?
I want to discretize the DateTime with the resolution of 5 minutes. I did it in C#, but how to convert the following code to MySQL?
DateTime Floor(DateTime dateTime, TimeSpan resolution)
{
return …
2
votes
3answers
21 views
Round to n Significant Figures in SQL
I would like to be able to round a number to n significant figures in SQL. So:
123.456 rounded to 2sf would give 120
0.00123 rounded to 2sf would give 0.0012
I am aware of the ROUND() function, …
4
votes
6answers
2k views
rounding to an arbitrary number of significant digits
How can you round any number (not just integers > 0) to N significant digits?
For example, if I want to round to 3 significant digits, I'm looking for a formula that could take:
1,239,451 and return …
1
vote
2answers
131 views
Rounding to use for int -> float -> int round trip conversion
I'm writing a set of numeric type conversion functions for a database engine, and I'm concerned about the behavior of converting large integral floating-point values to integer types with greater …
0
votes
1answer
28 views
creating a custom attribute to control rounding behavior
I have a class with a lot of Decimal properties that are used for financial calculations. There are rules that specify how many decimal places to use when rounding each number. There is no global …
1
vote
2answers
84 views
Odd rounding problem using the ruby printf-format-specifier
Has anybody got any ideas on this one?
When we run:
printf("%.0f", 40.5)
On a windows box the return is "41" but on our production ubuntu server we're getting "40"
0
votes
3answers
41 views
accurate single pass penny computation
We have a cost C which must be assigned to departments 1..n. Another computation produces the share for each department, it is a number from 0 to 1, with more than 5 decimal places. The sum of all …
-1
votes
2answers
68 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
2answers
166 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) {
return (long) (d + …
2
votes
10answers
194 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 reason for it, but …
0
votes
4answers
113 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 solution of
…
7
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 …
-1
votes
4answers
442 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?
