Tagged Questions
The decimal tag has no wiki summary.
81
votes
8answers
17k views
decimal vs double! - Which one should I use and when?
I keep seeing people using doubles in C#. I know I read somewhere that doubles sometimes lose precision.
My question is when should a use a double and when should I use a decimal type?
Which type is ...
61
votes
16answers
132k 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 ...
43
votes
8answers
51k views
Moving decimal places over in a double
So I have a double set to equal 1234, I want to move a decimal place over to make it 12.34
So to do this I multiply .1 to 1234 two times, kinda like this
double x = 1234;
for(int i=1;i<=2;i++)
{
...
30
votes
6answers
9k views
C# Decimal datatype performance
I'm writing a financial application in C# where performance (i.e. speed) is critical. Because it's a financial app I have to use the Decimal datatype intensively.
I've optimized the code as much as ...
29
votes
6answers
3k views
Is a double really unsuitable for money?
I always tell in c# a variable of type double is not suitable for money. All weird things could happen. But I can't seem to create an example to demonstrate some of these issues. Can anyone provide ...
28
votes
6answers
60k views
How do you round a number to two decimal places in C#?
I want to do this using the Math.Round function
26
votes
4answers
335 views
C# Why can equal decimals produce unequal hash values?
We ran into a magic decimal number that broke our hashtable. I boiled it down to the following minimal case:
decimal d0 = 295.50000000000000000000000000m;
decimal d1 = 295.5m;
Console.WriteLine("{0} ...
24
votes
5answers
3k views
What is the purpose of Decimal.One, Decimal.Zero, Decimal.MinusOne in C#
Simple question - why does the Decimal type define these constants? Why bother?
I'm looking for a reason why this is defined by the language, not possible uses or effects on the compiler. Why put ...
20
votes
2answers
525 views
Deconstructing Pokémon glitches?
(I apologize if this is the wrong place to ask this. I think it's definitely programming related, though if this belongs on some other site please let me know)
I grew up playing Pokémon Red and ...
20
votes
14answers
5k views
Decimal vs Double Speed
I write financial applications where I constantly battle the decision to use a double vs using a decimal.
All of my math works on numbers with no more than 5 decimal places and are not larger than ...
18
votes
5answers
346 views
Interesting behaviour of type “decimal” in C#
If we declare padding as const decimal, the padding is not working.
mymoney = 1.2 and your money = 1.20, how can this behavior be explained?
class Program
{
static void Main(string[] args)
{
...
18
votes
10answers
36k views
17
votes
6answers
7k views
Generating a Random Decimal in C#
How can I get a random System.Decimal? System.Random doesn't support it directly.
16
votes
5answers
199 views
Is it better to cast double as decimal or construct “new” decimal from double?
When going from a double to a decimal, presuming my double can be represented as a decimal...
Is it more appropriate to cast a double as a decimal:
(Explicit Numeric Conversions Table) (Note that ...
15
votes
4answers
4k views
Conversion of a decimal to double number in C# results in a difference
Summary of the problem:
For some decimal values, when we convert the type from decimal to double, a small fraction is added to the result.
What makes it worse, is that there can be two "equal" ...
15
votes
7answers
6k views
Adjusting decimal precision, .net
These lines in C#
decimal a = 2m;
decimal b = 2.0m;
decimal c = 2.00000000m;
decimal d = 2.000000000000000000000000000m;
Console.WriteLine(a);
Console.WriteLine(b);
Console.WriteLine(c);
...
14
votes
2answers
595 views
Evil in the python decimal / float
I have a large amount of python code that tries to handle numbers with 4 decimal precision and I am stuck with python 2.4 for many reasons. The code does very simplistic math (its a credit management ...
13
votes
3answers
287 views
Is there any practical difference between the .net decimal values 1m and 1.0000m?
Is there any practical difference between the .net decimal values 1m and 1.0000m?
The internal storage is different:
1m : 0x00000001 0x00000000 0x00000000 0x00000000
1.0000m : 0x000186a0 ...
13
votes
8answers
353 views
Behind the scenes, what's happening with decimal value type in C#/.NET?
How is the decimal type implemented?
Update
It's a 128-bit value type (16 bytes)
1 sign bit
96 bits (12 bytes) for the mantissa
8 bits for the exponent
remaining bits (23 of them!) set to 0
...
13
votes
4answers
5k views
Django: How should I store a money value?
I'm running into a paradigm problem here. I don't know whether I should store money as a Decimal(), or if I should store it as a string and convert it to a decimal myself. My reasoning is this:
...
13
votes
3answers
4k views
Why can't I unbox an int as a decimal?
I have an IDataRecord reader that I'm retrieving a decimal from as follows:
decimal d = (decimal)reader[0];
For some reason this throws an invalid cast exception saying that the "Specified cast is ...
13
votes
5answers
2k views
use decimal values as attribute params in c#?
I have been trying to use decimal values as params for a field attribute but i get a compiler error.
I found this blog post link saying it wasn't possible in .Net to use then, does anybody know why ...
12
votes
5answers
402 views
How to convert a double to a C# decimal in C++?
Given the reprensentation of decimal I have --you can find it here for instance--, I tried to convert a double this way:
explicit Decimal(double n)
{
DoubleAsQWord doubleAsQWord;
...
11
votes
3answers
144 views
Decimal stores precision from parsed string in C#? What are the implications?
During a conversation on IRC, someone pointed out the following:
decimal.Parse("1.0000").ToString() // 1.0000
decimal.Parse("1.00").ToString() // 1.00
How/why does the decimal type retain precision ...
11
votes
2answers
547 views
How can I make a “working” repeating decimal representation of a rational number?
I've figured out how to display the repeating part of a repeating decimal using OverBar.
repeatingDecimal doesn't actually work as a repeating decimal. I'd like to make a variation of it that looks ...
11
votes
3answers
1k views
Parse decimal and filter extra 0 on the right?
From a XML file I receive decimals on the format:
1.132000
6.000000
Currently I am using Decimal.Parse like this:
decimal myDecimal = Decimal.Parse(node.Element("myElementName").Value, ...
11
votes
2answers
1k views
Precise Financial Calculation in JavaScript. What Are the Gotchas?
In the interest of creating cross-platform code, I'd like to develop a simple financial application in JavaScript. The calculations required involve compound interest and relatively long decimal ...
11
votes
10answers
349 views
A question for you who work with hexadecimal frequently
Whenever I work with hexadecimal values, I do the conversion (if needed) into decimal in my head or with the help of a converter. Well I was thinking, if you work long enough and get used to ...
11
votes
5answers
7k views
Raising a decimal to a power of decimal?
The .net framework provides in the Math class a method for powering double. But by precision requirement I need to raise a decimal to a decimal power [ Pow(decimal a, decimal b) ]. Does the framework ...
10
votes
6answers
2k views
Best way to display decimal without trailing zeros in c#
Is there a display formatter that will output decimals as these string representations in c# without doing any rounding?
decimal -> string
20 -> 20
20.00 -> 20
20.5 -> 20.5
20.5000 -> 20.5
...
10
votes
4answers
12k views
C# Decimal.Parse issue with commas
Here's my problem (for en-US):
Decimal.Parse("1,2,3,4") returns 1234, instead of throwing an InvalidFormatException.
Most Windows applications (Excel en-US) do not drop the thousand separators and ...
9
votes
3answers
483 views
Why does a C# System.Decimal remember trailing zeros?
Is there a reason that a C# System.Decimal remembers the number of trailing zeros it was entered with?
See the following example:
public void DoSomething()
{
decimal dec1 = 0.5M;
decimal dec2 ...
9
votes
6answers
1k views
Is using decimal ranges in a switch impossible in C#?
I'm just starting out learning C# and I've become stuck at something very basic.
For my first "app" I thought I'd go for something simple, so I decided for a BMI calculator.
The BMI is calculated ...
9
votes
3answers
1k views
Decimal - truncate trailing zeros
I noticed that .NET has some funky/unintuitive behavior when it comes to decimals and trailing zeros.
0m == 0.000m //true
0.1m == 0.1000m //true
but
(0m).ToString() == (0.000m).ToString() //false
...
9
votes
1answer
702 views
Is there a decimal math library for JavaScript?
Is there a mature library for doing decimal-based math, possibly arbitrary-precision, in JavaScript?
Edit: I want this information for a reference page on floating-point-related problems and ...
9
votes
3answers
7k views
Calculate System.Decimal Precision and Scale
Suppose that we have a System.Decimal number.
For illustration, let's take one whose ToString() representation is as follows:
d.ToString() = "123.4500"
The following can be said about this ...
9
votes
5answers
18k views
Best Way to get Whole Number part of a Decimal Number
What is the best way to return the whole number part of a decimal (in c#)? (This has to work for very large numbers that may not fit into an int).
GetIntPart(343564564.4342) >> 343564564
...
8
votes
5answers
134 views
C# converting a decimal to an int safely
I am trying to convert a decimal to an integer safely.
Something like
public static bool Decimal.TryConvertToInt32(decimal val, out int val)
this will return false if it cannot convert to an ...
8
votes
3answers
130 views
Decimal Conversion F# Script vs. Compiled F#
In the F# Interactive, the following piece of code works:
> printfn "%A" (decimal 1I)
1M
However, in a compiled F# program, an error message appears:
The type 'Numerics.BigInteger' does not ...
8
votes
2answers
1k views
Limit a double to two decimal places without trailing zeros
I read this and that. I want this exactly:
1.4324 => "1.43"
9.4000 => "9.4"
43.000 => "43"
9.4 => "9.40" (wrong)
43.000 => "43.00" (wrong)
In both questions the answers points to ...
8
votes
4answers
873 views
How to best aproach rounding up decimals in c#
I've decimal value 18.8. Values that are stored in this variable can be of any kind. For example it can be 1.0000000 or 1.00004000 or 5.00000008.
I would like to write a method so that i can pass ...
8
votes
12answers
976 views
Why aren't Floating-Point Decimal numbers hardware accelerated like Floating-Point Binary numbers?
Is it worth it to implement it in hardware? If yes why? If not why not?
Sorry I thought it is clear that I am talking about Decimal Rational Numbers! Ok something like decNumber++ for C++, decimal ...
8
votes
4answers
62k views
Write a number with two decimal places SQL server
How do you write number in two decimal place for sql server?
8
votes
5answers
1k views
Lightweight Java Decimal Class
I am considering writing two limited precision alternatives to BigDecimal, namely DecimalInt and DecimalLong. These would be capable of dealing with numbers within the real bounds of int and long ...
7
votes
1answer
73 views
Objective C strange decimal to long long conversion
NSLog(@"%llu\n\n", ULONG_LONG_MAX);
NSDecimalNumber *decimal = [NSDecimalNumber decimalNumberWithString:@"154550038129946620"];
NSLog(@"%@", decimal);
NSLog(@"%llu\n\n", [decimal ...
7
votes
3answers
459 views
Visual basic handle decimal comma
I'm trying to save variables into text files and the Czech typographic rules drives me crazy.
The program I'm tuning is dedicated to work on Czech localized computers where decimal comma is used but ...
7
votes
6answers
373 views
Easy way of finding decimal places
Is there an easy way or integrated function to find out the decimal places of a floating point number?
The number is parsed from a string, so one way is to count the digits after the '.' sign, but ...
7
votes
4answers
2k views
Force decimal point instead of comma in HTML5 number input (client-side)
Recently, I have seen that some browsers localize the input type="number" notation of numbers.
So now, in fields where my application displays longitude and latitude coordinates, I get stuff like ...
7
votes
2answers
260 views
Making decimal.Decimal the default numerical type in Python
Is there some way I could make decimal.Decimal the default type for all numerical values in Python? I would like to be able to use Python in a manner similar to the bc and dc programs without having ...
7
votes
3answers
457 views
C# decimal.Parse behaviour
Short question:
Why are these '.....' valid for parsing a decimal in .NET (C#):
decimal res = decimal.Parse("8......15"); // returns 815
decimal res = decimal.Parse("8...15"); // returns 815
...