int x = 73;
int y = 100;
double pct = x/y;
Why do I see 0 instead of .73?
feedback
|
|
Because the division is done with integers then converted to a double. Try this instead:
| |||||||
feedback
|
|
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. | ||||
|
feedback
|
|
because the operation is still on int type. Try double pct = (double)x / (double)y; | |||
|
feedback
|
|
Integer division drops the fractional portion of the result. See: http://mathworld.wolfram.com/IntegerDivision.html | |||
|
feedback
|
|
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 As other have noted, you'll need to cast the | |||
|
feedback
|
|
That’s because the type of the left hand operand of the division (
| |||
feedback
|