vote up 4 vote down star

i want the result of an equation rounded to the nearest integer. e.g.

137 * (3/4) = 103

Consider the following incorrect code.

int width1 = 4;
int height1 = 3;

int width2 = 137;
int height2 = width2 * (height1 / width1);

What is the proper way to perform "integer" math in C#?

Do i really have to do:

int height2 = (int)Math.Round(
      (float)width2 * ((float)height1 / (float)width1)
   );
flag

55% accept rate

8 Answers

vote up 2 vote down check

As said above, you should do the multiplication before the division. Anyway you could write your expression with casting only the divisor:

int height2 = (int)Math.Round(width2 * (height1 / (float)width1));
link|flag
vote up 5 vote down
int height2 = (width2 * height1) / width1;
link|flag
vote up 0 vote down

The elaborate on Jeffery's message, since you generally a better chance of truncated needed decimals than you have of overflowing a 32-bit integer (and because multiplication & division is commutative), you should generally do multiplication before division.

link|flag
vote up 3 vote down

Do multiplication first (as long as they're not likely to overflow) and division second.

3/4 == 0 in integer math (integer math doesn't round on division, it truncates).

If you really need rounding, you have to either work in fixed point, floating point, or play around with the modulus.

link|flag
vote up 4 vote down

Added rounding to Jeffrey L Whitledge's answer:

int height2 = Math.Round((float)(width2 * height1) / (float)width1);
link|flag
So this is tagged as best answer to the question "how do I perform integer math"? This is float math, and it did not protect against zero divide. Oh well, guess it was the actual question he was asking. – dongilmore Dec 2 '08 at 0:33
See the original question: "137 * (3/4) = 103" – Ian Boyd Dec 3 '08 at 15:11
Oops, need to cast the result of Math.Round to an int. Accepted Aaron's answer instead. – Ian Boyd Dec 3 '08 at 15:12
vote up -1 vote down

int height2 = ((width2 * height1 * 10) + 5) / (width1 * 10);

Prior to any integer division, check to make certain the divisor is not zero. Also note this assumes positive quotient. If negative, roundoff needs to be -5, not +5.

link|flag
doesn't help. still gets 102 – Steven Sep 5 at 22:05
vote up 0 vote down

I will fix the incorrect code by adding zero lines of code:

float width1 = 4;
float height1 = 3;

float width2 = 137;
float height2 = width2 * (height1 / width1);

You should use floats for variables that can possibly contain decimals. This includes heights calculated from ratios. You can always cast to int later if that is a problem.

link|flag
The orginal values are integers and can only contain integers. The question is then how to do math with them. If i was performing floating-point math i would have asked that. (actually, not really, since FP math wouldn't have the problem) – Ian Boyd Dec 3 '08 at 15:14
vote up 1 vote down

Never cast to float, it has even less precision than a 32-bit integer. If you're going to use floating point, always use double instead of float.

link|flag
Since i'll be rounding to a 32-bit integer anyway, does it matter than the double has a meaningful digit in the 8th place after the decimal and float does not? – Ian Boyd Jan 26 at 16:07
i.e. is 79.99999999 worse than 79.99999999999 – Ian Boyd Jan 26 at 16:07
Yes. 32 bit int is about 9 digits, but 32 bit float is only about 7. And remember: code that occasionally gives a slightly wrong answer is the worst kind of bug, much worse than always getting a completely wrong answer! – rwallace Jan 29 at 20:59

Your Answer

Get an OpenID
or

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