I have two values, A and B, which are 1632 and 5 each. And i wanna get the value of A divided by B by the unit of percent. So the result should be 1632 / 5 * 100 = 32640 (multiplying 100 to express the value in % unit) I have just used the INT function like this, RATE = INT( A / B * 100); however, the results is 32639, not 32640. So i tried like this, Rate = A / B * 100; then it turns out that the result is exactly what i want, 32640. What is the cause of this phenomena...?
... View more