How best can I check if an integer is even or odd in C? I considered how I'd do this in Java, but I couldn't come up with an answer either. Thanks.
|
4
|
|||||||||||||
|
|
|
Use the modulo (%) operator to check if there's a remainder when dividing by 2:
A few people have criticized my answer above stating that using x & 1 is "faster" or "more efficient". I do not believe this to be the case. Out of curiosity, I created two trivial test case programs:
I then compiled these with gcc 4.1.3 on one of my machines 5 different times:
I examined the assembly output of each compile (using gcc -S) and found that in each case, the output for and.c and modulo.c were identical (they both used the andl $1, %eax instruction). I doubt this is a "new" feature, and I suspect it dates back to ancient versions. I also doubt any modern (made in the past 20 years) non-arcane compiler, commercial or open source, lacks such optimization. I would test on other compilers, but I don't have any available at the moment. If anyone else would care to test other compilers and/or platform targets, and gets a different result, I'd be very interested to know. Finally, the modulo version is guaranteed by the standard to work whether the integer is positive, negative or zero, regardless of the implementation's representation of signed integers. The bitwise-and version is not. Yes, I realise two's complement is somewhat ubiquitous, so this is not really an issue. |
||||||||||||||
|
|
|
I'd say just divide it by 2 and if there is a 0 remainder, it's even, otherwise it's odd. Using the modulus (%) makes this easy. eg. 4 % 2 = 0 therefore 4 is even 5 % 2 = 1 therefore 5 is odd |
||
|
|
|
|
|
||
|
|
|
|
Use bit arithmetic:
This is faster than using division or modulus. |
||||||||||||||
|
|
|
|
||||||||||
|
|
|
A number is even if, when divided by two, the remainder is 0. A number is odd if, when divided by 2, the remainder is 1.
Methods are great! |
||||||||
|
|
|
The bitwise method depends on the inner representation of the integer. Modulo will work anywhere there is a modulo operator. For example, some systems actually use the low level bits for tagging (like dynamic languages), so the raw x & 1 won't actually work in that case. |
||
|
|
|
|
You guys are waaaaaaaay too efficient. What you really want is:
Repeat for Of course, that doesn't work for negative numbers. But with brilliance comes sacrifice... |
||||||||||||
|
|
|
One more solution to the problem
|
||||||||||
|
|
|
In response to ffpf - I had exactly the same argument with a colleague years ago, and the answer is no it doesn't work with negative numbers. The C standard stipulates that negative numbers can be represented in 3 ways: - 2's compliment - 1's compliment - "sign and magnitude". Checking like this:
will work for 2's compliment and sign and magnitude formats, but not for 1's compliment. However, I believe that the following will work for all cases:
edit: thanks to ffpf for pointing out that the text box was eating everything after my lessthan character! |
|||
|
|
|
A nice one is:
Note that this method use tail recursion involving two functions. It can be implemented efficiently (turned into a while/until kind of loop) if your compiler supports tail recursion like a Scheme compiler. In this case the stack should not overflow ! |
||||||||||||
|
|
|
I know this is just syntactic sugar and only applicable in .net but what about extension method...
Now you can do the following
|
||||
|
|
|
[Joke mode="on"]
[Joke mode="off"] EDIT: Added confusing values to the enum. |
||||||||||
|
|
|
IsOdd(int x) { return true; } Proof of correctness - consider the set of all positive integers and suppose there is a non-empty set of integers that are not odd. Because positive integers are well-ordered, there will be a smallest not odd number, which in itself is pretty odd, so clearly that number can't be in the set. Therefore this set cannot be non-empty. Repeat for negative integers except look for the greatest not odd number. |
||
|
|
|
|
Portable:
Unportable:
|
||
|
|
|
|
|
||||
|
|
|
For the sake of discussion... You only need to look at the last digit in any given number to see if it is even or odd. Signed, unsigned, positive, negative - they are all the same with regards to this. So this should work all round: -
The key here is in the third line of code, the division operator performs an integer division, so that result are missing the fraction part of the result. So for example 222 / 10 will give 22 as a result. Then multiply it again with 10 and you have 220. Subtract that from the original 222 and you end up with 2, which by magic is the same number as the last digit in the original number. ;-) The parenthesis are there to remind us of the order the calculation is done in. First do the division and the multiplication, then subtract the result from the original number. We could leave them out, since the priority is higher for division and multiplication than of subtraction, but this gives us "more readable" code. We could make it all completely unreadable if we wanted to. It would make no difference whatsoever for a modern compiler: -
But it would make the code way harder to maintain in the future. Just imagine that you would like to change the text for odd numbers to "is not even". Then someone else later on want to find out what changes you made and perform a svn diff or similar... If you are not worried about portability but more about speed, you could have a look at the least significant bit. If that bit is set to 1 it is an odd number, if it is 0 it's an even number. On a little endian system, like Intel's x86 architecture it would be something like this: -
|
||||||
|
|
|
If you want to be efficient, use bitwise operators ( |
||
|
|
|
|
In the "creative but confusing category" I offer:
A variant on this theme that is specific to Microsoft C++:
|
|||
|
|
|
|
done. |
||
|
|
|
|
in c language main() { int n; clrscr(); printf("enter integer value: "); scanf("%d",&n); if(n%2= =0) printf("given value is even"); if(n%2!=0) printf("given value is odd"); } |
|||
|
|
