i1/i2
will be 0. Since i1
and i2
are integers.
If you have int1/int2
, if the answer is not a perfect integer, the digits after the decimal point will be deleted. In your case, 2/5
is 0.4, so you get 0.
You can apply i1
or i2
to double
(the other will be implicitly converted)
double d = 3 + (double)i1/i2 +2;
source share