0
votes
0answers
12 views

JSONObject removes decimal dot, if round number

Using a rest service, we are transfering values using JSON. At some point, we need to decide, wheter the incoming value was a long or a double. While Double d = 17.0; ...
2
votes
2answers
28 views

Several decimal for double in JAXB

I create XML with JAXB, and I want to put double inside tags: @XmlElement(name = "TaxFree") private double taxFreeValue; When I set value with setTaxFreeValue(4.5); in tags shows ...
0
votes
1answer
25 views

Option Strict On and Constant in Visual Basic?

Please forgive me, I haven't used this site very much! I am working in Visual Studio with Visual Basic. I finished programming my project with Option Strict Off, then when I turned Option Strict on, I ...
0
votes
4answers
39 views

Java - unexpected result when rounding a double/float to 2 decimals

I encounter a problem when round a double to 2 decimals. I know this questions have been asked in many places. But my question is slightly different and I cannot find it in other places. So far as I ...
1
vote
0answers
29 views

MS SQL calculation query - incorrect results and/or data type (only shows integer part)

I've attached picture of the problem I'm having. Basically I am supposed to be getting answer like 3.66667 for first GPA, but it's showing 3. Same for the other 2 GPAs - they have decimal parts, but ...
1
vote
1answer
44 views

“Cannot convert from decimal to double”

I'm trying to pull some numbers that occur in my database as fractions of a day in decimal format. These times can be null in some circumstances though, so I am trying to utilize this method to ...
-1
votes
2answers
85 views

MySql Decimal Datatype : not Inserting Proper Value

Short Version I am trying to insert Decimal value but after insertion it is storing 99.999999 for all Decimal values. I am using MySql 5.5.16. Long Version I am trying to create a table with schema ...
1
vote
1answer
87 views

C# which numeric type for a math application?

I write an interval analysis C# application so I have to handle very large or small numbers. I think double is a very good data type (because the floating-point arithmetic). User can define any ...
0
votes
2answers
226 views

Double vs Decimal Rounding in C#

Why does: double dividend = 1.0; double divisor = 3.0; Console.WriteLine(dividend / divisor * divisor); output 1.0, but: decimal dividend = 1; decimal divisor = 3; Console.WriteLine(dividend / ...
1
vote
2answers
89 views

Dropping extra decimal places in c

I've run into a small problem. I'm trying to remove extra decimal places in c, that will be used in calculations. For example 67.98345, I want it to be 67.98 But not just for a printf statement. I ...
0
votes
2answers
79 views

Rounding to 2 decimal points

I've used the following to round my values to 2 decimal points: x = floor(num*100+0.5)/100; and this seems to work fine; except for values like "16.60", which is "16.6". I want to output this ...
0
votes
2answers
517 views

C++ decimal data types

Is there a way to use decimal data types such as decimal32, decimal64 or decimal128in my C++ programs?
2
votes
2answers
109 views

Adding millions of fixed point numbers

I have given millions of numbers with precisely 4 digits after the decimal point. They have to be added and subtracted a lot in a complicated fashion (in an optimiziation problem). After that (and in ...
0
votes
2answers
122 views

Java and J2ME calculate ratio

Hi guys I need some help with calculating and displaying a ratio result. so here is the sample code I am working on: double a = 11; double b = 2508; double total1; double total2; ...
0
votes
1answer
53 views

double or decimal for temperature spread formula

I am looking at writing an application which calculates temperatures spread in a material with an exposure (such as fire) over time. I then need to draw the result as a heat map on the geometry of ...
2
votes
1answer
60 views

Unexpected truncation when converting a decimal to a double

When converting a decimal to a double, sometimes there is some unexpected truncation. For example: decimal dec = -96.31614743511301m; double dbl = Convert.ToDouble(dec); // dbl = ...
4
votes
1answer
477 views

Not displaying decimals if double is a whole number?

I am making a graphical calculator program in Java and have a method that performs an operation based on user input, and returns a double to be displayed in a JTextField. However, I would like the ...
0
votes
2answers
53 views

Strange floating point result behavior despite explicit casting

Well I have been on this problem the entire day and I think that qualifies the need for some help. PHP $hour1 = (float) $date1 / 10000; $hour1 = (float) floor($hour1); $hour2 = (float) $date2 / ...
4
votes
7answers
190 views

Double decimal formatting in Java

I'm really new to java and i'm having some problems formatting decimals of a double number. Basically I have a double value, e.g. 4.0, and I want to format the decimals so it's 4.00 instead. Any ...
1
vote
1answer
244 views

convert from sql type decimal(20,8) to c++ double

How do i convert from sql decimal type to double WITHOUT casting the underlying database with a query as this answer suggests. I am on MySQL and casting from decimal(20,8) to real causes errors. I am ...
0
votes
0answers
243 views

Is it possible to cast a DECIMAL to DOUBLE in MySQL?

I know all the numerical implications, that is, the possible rounding issues inherent to floating point formats, but in my case I have DECIMAL columns in MySQL that I want to convert to DOUBLE ...
1
vote
2answers
321 views

My method which convert double to 2 decimal places doesn't work right [duplicate]

Possible Duplicate: Is there an equivalent for toPrecision() in Java? I created a method which suppose to limit the number to only 2 decimal places but what it does it shows numbers to 2 ...
1
vote
1answer
104 views

Why are the numbers I input only read to 6 significant figures?

I am trying to run the following program and it works but when I enter a value that is more than 6 decimal places it keeps getting rounded/truncated e.g. 2.999999 --> 3. How do I set it so it stops ...
4
votes
1answer
187 views

C# Decimal.GetHashCode() and Double.GetHashCode() equal

Why is it that 17m.GetHashCode() == 17d.GetHashCode() (m=decimal, d=double) Additionally, as expected 17f.GetHashCode() != 17d.GetHashCode() (f=float) This appears to be true for both net3.5 and ...
3
votes
4answers
266 views

Which values cannot be represented correctly by a double

The Double data type cannot correctly represent some base 10 values. This is because of how floating point numbers represent real numbers. What this means is that when representing monetary values, ...
0
votes
3answers
112 views

Double -> Extract Whole Numbers

int a = 4; int b = 3; int c = 10; int d1 =(int) (double)(a*b)/c; double d2 =(double)(a*b)/c; System.out.println("d1: " + d1); System.out.println("d2: " + d2); Result: d1: 1 and d2: 1.2 How do ...
0
votes
2answers
114 views

decimal to double

I have something like this..... foreach (var pupilAvg in pupilsAvgs) { Report_TeachersPosition teacher = new Report_TeachersPosition(); teacher.ORG_ID = pupilAvg.ORG_ID; teacher.Yearcode ...
4
votes
4answers
156 views

Using Math.Ceiling with ints in C#

I am trying to take a file and split it into 512kb chunks. To calculate the number of chunks, I need to do some basic math. For some reason, I am having some data loss issues. I can't figure out what ...
2
votes
3answers
859 views

Show decimal of a double only when needed [duplicate]

Possible Duplicate: Round a double to 2 significant figures after decimal point I got this problem with double (decimals). When a double = 1.234567 Then I use String.format("%.3f", ...
2
votes
3answers
398 views

Align decimals in a list of doubles in Java

Here's the code section: System.out.println("The values of pi from term " + (userNum - 9) + " to term " + userNum + " are:"); for (int x = 1; x < userNum; x++) { ...
0
votes
2answers
409 views

The call is ambiguous between the following methods or properties (decimal and double, with rounding)

My program cannot determine whether to execute Math.Round as a decimal or a double, but I have no idea how to fix this... Here is my code, though the second to last line is what I am concerned with. ...
7
votes
3answers
252 views

C# Casting to a decimal

What, if any, is the difference between? decimal d = (decimal) myDouble; decimal d = new decimal(myDouble); decimal d = Convert.ToDecimal(myDouble);
2
votes
1answer
282 views

Issues with the type of double related to regional settings

In my application (WCF, REST, .NET) in an object request I get a value of type double. I need this method to properly fulfilled on numbers with the decimal part "," and ".". How to arrange it without ...
1
vote
3answers
216 views

What is that decimal can't do but double can and vice versa?

Can someone tell what a decimal variable cannot do but at the same time double can do? Also what is that double cant do but decimal can? I was having trouble with finding power of (sqroot 5) ...
0
votes
3answers
802 views

Convert from double to decimal

I am developing a weather application in C# using the Google weather XML file and I am having trouble using calculations in a class file. I am trying to convert farenheit to celcius with the ...
0
votes
1answer
492 views

SQL C# Doubles with decimals

I'm trying to enter a double value in an SQL update statment, which is already converted (see code 1), to keep his numbers behind the comma. (1) double.TryParse(splitline[8], ...
0
votes
4answers
257 views

Formatting a double with decimals C#

Is it possible to format a double, so he doesn't chance the text 2140.76 to 214076 but instead letting it be 2140.76? I can't use ',' for the decimal numbers, since the entire text file that I'm ...
7
votes
2answers
8k views

Android - Round to 2 decimal places [duplicate]

Possible Duplicate: Round a double to 2 significant figures after decimal point I know that there is plant of examples how to round this kind numbers. But could someone show me how to round ...
0
votes
2answers
166 views

Android Calculator leading peroid “.” causing crash

Hi I am making a simple ohm's law calculator. I have it set up to automaticly calculate the value and update the total whenever the editText boxes change. I solved a problem with a crash when one of ...
1
vote
1answer
422 views

Decimal type in C# vs IEEE-754 standard

Is Decimal type in C# follow the same rules (formula,normalized/denormalized,implied 1,Exponent bias) of classic double representation (IEEE-754 standard) except the use of base 10 instead of base 2. ...
2
votes
2answers
2k views

java: Specifying how many numbers after the decimal point..!

I have a gui java code for calculating the range of data for example if two values entered 2.444 and 3.555 the result will be a long double 1.11100000......etc How do I specify how many digits after ...
0
votes
1answer
838 views

Formatting decimal places in Java

I'm trying to format a double to just 2 decimal places in Java. I've read the following post: How to round a number to n decimal places in Java For some reason, every one of those methods fails to ...
19
votes
5answers
954 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 ...
1
vote
3answers
2k views

Java textfield decimal validation

How can I validate user input contain only 5 digits with 2 decimal. I am using below code to check 5 digits, but how to check 2 decimal. if (!id.equals("")) { try { ...
0
votes
6answers
103 views

Anoying double value

Ok can anyone explain why the varialbe offset comes back as 0??? I need to update a progress bar but the value is less than 100 so offset is the value to increase current by and then update the ...
3
votes
1answer
392 views

How to display a number with many decimal places? (Java)

I was wondering if there is a way to "cheat" and work with numbers with way more decimal places than a double in Java, and then display it via [Graphics Object].drawString(number, 10, 10); Can I do ...
1
vote
3answers
114 views

Drawing a double and showing the decimal places?

public class ExperienceTable { public static int MaxExperiencePoints; public static double PercentToNextLevel; public static void checkLevel(Hero player) { if ...
1
vote
2answers
323 views

How does c store a double decimal in an 8 bit slot?

How does c store a double decimal in an 8 bit slot? #include "stdio.h" main(){ double x = 123.456; printf("\n %d - %e \n",sizeof(x),x); } outputs: 8 - 23.456 The value of x is correct being ...
12
votes
2answers
4k views

C# double to decimal precision loss

I've a double "138630.78380386264" and i want to convert it to a decimal however when i do so i either by casting or by using Convert.ToDecimal. I loose precision. What's going on? Both decimal and ...
8
votes
6answers
4k views

Why c# decimals can't be initialized without the M suffix?

public class MyClass { public const Decimal CONSTANT = 0.50; // ERROR CS0664 } produces this error: error CS0664: Literal of type double cannot be implicitly converted to type ...

1 2