vote up 2 vote down star
1
int x = 73;  
int y = 100;  
double pct = x/y;

Why do I see 0 instead of .73?

flag

2  
Not only C#, but a batch of other languages including C and C++. Common Lisp will return 73/100, and languages like Perl that lack an actual integer type will return 0.73. – David Thornley Nov 23 at 20:59
14  
How does one gain over 6K rep and not already know the answer to this question? – SauceMaster Nov 23 at 21:05
@SouceMaster: Because rep (a) doesn't measure ability, it measures participation, and (b) because OO simply asks bazillions of questions (10x as many as answers provided). There is a discussion on this on meta.stackoverflow.com. – Software Monkey Nov 23 at 21:07
1  
a junior member of my team asked this after googling for a little while. I suggested that it be posted on SOF for a quicker and more accurate solution. i was correct. Now when he googles this, this post comes up first (and thus SOF is making googling better) – oo Nov 23 at 21:33
1  
Maybe the junior members of your team should have SOF accounts. – mtrw Nov 24 at 3:18
show 6 more comments

6 Answers

vote up 32 vote down check

Because the division is done with integers then converted to a double. Try this instead:

double pct = (double)x / (double)y;
link|flag
7  
Just for completeness: Converting one of the ints to double is enough, but it doesn't hurt to convert them both :) – schnaader Nov 23 at 20:53
@schnaader You are absolutely correct. – Brian Ensink Nov 23 at 20:55
vote up 7 vote down

It does the same in all C-like languages. If you divide two integers, the result is an integer. 0.73 is not an integer.

The common work-around is to multiply one of the two numbers by 1.0 to make it a floating point type, or just cast it.

link|flag
vote up 3 vote down

because the operation is still on int type. Try double pct = (double)x / (double)y;

link|flag
vote up 2 vote down

Integer division drops the fractional portion of the result. See: http://mathworld.wolfram.com/IntegerDivision.html

link|flag
vote up 2 vote down

It's important to understand the flow of execution in a line of code. You're correct to assume that setting the right side of the equation equal to double (on the left side) will implicitly convert the solution as a double. However, the flow execution dicates that x/y is evaluated by itself before you even get to the double pct = portion of the code. Thus, since two ints are divided by each other, they will evaluate to an int solution (in this case, rounding towards zero) before being implicitly converted to a double.

As other have noted, you'll need to cast the int variables as doubles so the solution comes out as a double and not as an int.

link|flag
vote up 1 vote down

That’s because the type of the left hand operand of the division (x) is of type int, so the return type of x / y is still int. The fact that the destination variable is of type double doesn’t affect the operation. To get the intended result, you first have to cast (convert) x to double, as in:

double pct = (double)x / y;
link|flag
Which operand is double doesn't matter. Either (double)73/100 or 73/(double)100 would work just fine. If one operand is a double, all integer types will be coerced to double. – David Thornley Nov 23 at 21:00

Your Answer

Get an OpenID
or
never shown

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