Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Conside the following for C# and Java,

double d = 3 / 2 * 3.2;

Java

System.out.println(d); // 3.2

C#

Console.WriteLine(d); //3.2

It skip the 3/2,

We know that the correct answer should be 4.8

if i change to

double d = 3.00 / 2 * 3.2;

I can get 4.8,

So i want to ask, if (3 / 2 * 3.2) is illegal , why eclipse and vs2008 have no error? And how to prevent this problem in both C# and Java?

share|improve this question

9 Answers

up vote 8 down vote accepted

3 / 2 is considered as an integer division, so the result comes out to be 1.

Then, performing a multiplication between 1 and 3.2 causes the integer 1 to be promoted to floating point 1, resulting in 3.2.

The idea is:

// Both "3" and "2" are integers, so integer division is performed.
3 / 2 == 1

// "3.2" is a floating point value, while "1" is an integer, so "1" is
// promoted to an floating point value.
1 * 3.2  -->  1.0 * 3.2 == 3.2

When typing 2.0, the decimal point tells Java to consider the literal as a floating point value (in this case, a double), so the result of the calculation is 4.8 as expected. Without the decimal point, the value is a integer literal.

It is not an error, but an issue with how the literals are handled.

The following links have more information:

share|improve this answer

3/2 is Integer division, whose result is 1.

1 * 3.2 equals 3.2, which is the result you receive.

This is a proper well-defined formula with well-defined expected results, hence no error by the compiler. Use 3.00, it's the best straightforward way to force the compiler to use floating point math.

From Thorbjørn's answer: another option is to standardize all your floating point calculations by starting with 1.0*, in your example it would be 1.0*3/2*3.2.

share|improve this answer
1  
Multiplication is communicative with division, no matter if you're using "real" math or not. It doesn't have higher priority anywhere. – Williham Totland Sep 6 '09 at 12:24
-1: The operations in this calculation are usually calculated from left to right. See: en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B – Alex Reynolds Sep 6 '09 at 12:26
I think the confusion here comes from the fact that multiplication commonly occurs within the numerator or denominator in algebra. Or PEMDAS. – Snarfblam Sep 6 '09 at 12:27
Thanks for the comments, cleaned my answer – Roee Adler Sep 6 '09 at 12:32
@Williham Totland: Haha, commutative ;) – fish Sep 6 '09 at 13:01
show 1 more comment

It's perfectly legal, but 3/2 is an integer division (which is like doing the division but then choosing the number nearest to 0 (in some languages -infinity)). You need to give the compiler some kind of "hint" want division you want to do.

You can simply avoid it by writing

3.0 / 2 * 3.2          or      3 / 2.0 * 3.2
3.0 / 2.0 * 3.2
3d / 2d * 3.2 (C#)
(double)3 / 2 * 3.2
share|improve this answer

If you want to be CERTAIN that a calculation happens with decimals instead of integers, then either start with

 1.0 * 3 / 2 * 3.2

or tell the compiler that the first number is a real/double:

3d / 2 * 3.2
share|improve this answer
+1 for starting with 1.0, very clean – Roee Adler Sep 6 '09 at 12:39

When dividing one integer literal with another, the entire expression is treated at integer division: 3/2 as such becomes 1; not 1.5 (because it's all integers). Not until the next part, 1 * 3.2 is the integer promoted to a double; and as such, not until that point does it actually become 1.0.

EDIT: There's no error flagged because it isn't illegal.

share|improve this answer

3 / 2 is the first operation performed.

Both 3 and 2 are integers. When two ints are divided, the answer is an int (in this case, the answer is 1).

So from 3 / 2 * 3.2 you end up with 1 * 3.2. When you multiply an int and a float, the result will be promoted to a float. So the answer is 3.2.

share|improve this answer

This is due to casting and number type issues.

In C# (and Java as it seems too) 3 and 2 are both integer values so the division '3 / 2' is an integer division which leads to an integer 1.

Since 3.2 is a floating point value the integer result of the division is converted to a floating point value and multiplicated after that and since 1 * 3.2 is 3.2 that'sd the result.

There is no code error in this so that's why Java and C# accept this.

The safest way would always be to tell the compiler that you need floating point values here by using

3.0 / 2.0 * 3.2

This works in all cases.

share|improve this answer

In C#

3d / 2d * 3.2

As stated before

share|improve this answer

Think that's bad? Try these:

   70 / 6 * 3.2    // 35.20000000000000003

   70 / 6.0 * 3.2   // 37.3333333333333336

   070 / 6 * 3.2    // 28.8000000000000001

   070 / 6.0 * 3.2  // 29.8666666666666671

Try it in every language you know. Try Java, C, C++, C#, Python and PHP. Do you get different results in BASIC or Fortran?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.