vote up 17 vote down star
4

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.

flag

The version that uses bitwise and (&) is much more efficient than the modulo (%) version. You should change the one you selected as the correct answer. – Stefan Rusek Oct 2 '08 at 11:11
Unlikely to matter - argument is a constant. Easy for the optimizer – MSalters Oct 2 '08 at 11:20
Have you made an benchmark? Performance of different constructs depends strong on compiler, your CPU and other side-effects. – Mnementh Oct 2 '08 at 11:23
Readability factors into this as well. – Brian G Oct 2 '08 at 12:39
1  
@Stefan Rusek: bullshit :) – freespace Oct 3 '08 at 7:01
show 1 more comment

20 Answers

vote up 126 vote down check

Use the modulo (%) operator to check if there's a remainder when dividing by 2:

if (x % 2) { /* x is odd */ }

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:

/* modulo.c */
#include <stdio.h>

int main(void)
{
    int x;
    for (x = 0; x < 10; x++)
        if (x % 2)
            printf("%d is odd\n", x);
    return 0;
}

/* and.c */
#include <stdio.h>

int main(void)
{
    int x;
    for (x = 0; x < 10; x++)
        if (x & 1)
            printf("%d is odd\n", x);
    return 0;
}

I then compiled these with gcc 4.1.3 on one of my machines 5 different times:

  • With no optimization flags.
  • With -O
  • With -Os
  • With -O2
  • With -O3

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.

link|flag
For Java this has to be: if (x % 2 == 0) { /* x is odd */ } As integers are not automatically treated as boolean in if statements – Philip Fourie Oct 2 '08 at 5:18
The question specifically asked how to do it in C so I answered it in C, despite chustar mentioning they couldn't work out how to do it in Java. I did not claim or imply this was a Java answer, I do not know Java. I think I just got my first downvote and am confused as to why. Oh well. – Chris Young Oct 2 '08 at 5:49
I'd say, if (x % 2 != 0) { /* x is odd */ }, but who knows. Do not know java either. – eugensk00 Oct 2 '08 at 6:00
I would agree with Remo D were this an unsigned type, but the question merely specified an integer. (x&1) could fail on a signed int if being used on an implementation that didn't use two's complement. – Chris Young Oct 2 '08 at 6:09
1  
Modern compilers will optimized x%2 to x&1 if/when such an optimization is both correct and faster. In old days, it was likely not to be correct (1's compliment systems), now a days, it's not likely to be faster (all arithmetic done in 1 cycle). – Aaron Oct 2 '08 at 9:09
show 14 more comments
vote up 4 vote down

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

link|flag
vote up 3 vote down
i % 2 == 0
link|flag
vote up 35 vote down

Use bit arithmetic:

if((x & 1) == 0)
    printf("EVEN!\n");
else
    printf("ODD!\n");

This is faster than using division or modulus.

link|flag
That's exactly what I just posted. Up vote for having a great mind. ;) – Jeff Yates Oct 2 '08 at 5:03
2  
I don't think it's fair to say it's faster than using division or modulus. The C standard doesn't say anything about performance of operators, and any decent compiler will produce fast code for either. I would personally choose the idiom that communicates my intent, and % seems more appropriate here – Chris Young Oct 2 '08 at 5:06
I agree with Chris Young - I believe that any modern C/C++ compiler will boil the "% 2" operation down to a bit test. At least for non-debug builds. – Michael Burr Oct 2 '08 at 5:18
1  
I like (x & 1) better, because it checks whether the number is even the same way people do: check if the last digit is even or odd. In my opinion it communicates its intent more than the modulo method. (Not that it matters much.) – jeremy Ruten Oct 2 '08 at 5:22
I like the bitwise method for similar reasoning. It also feels more elegant, not that one should get points for elegance, necessarily. – Jeff Yates Oct 2 '08 at 5:36
show 8 more comments
vote up 4 vote down
// C#
bool isEven = ((i % 2) == 0);
link|flag
What? That's not C#! That's pure C! :-P – asterite Oct 2 '08 at 16:09
I'll throw a WinForm around it to make it pure C#... – Michael Petrotta Oct 2 '08 at 16:21
1  
bool in pure C? – mateusza Jun 18 at 20:15
vote up 8 vote down

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.

// Java
public boolean isOdd(int num){
    return num % 2 != 0;
}

/* C */
int isOdd(int num){
    return num % 2;
}

Methods are great!

link|flag
Your Java method is broken because num % 2 == -1 for negative odd numbers. – WMR Oct 22 '08 at 14:44
Is that why you downvoted me? – jjnguy Oct 22 '08 at 14:45
I downvoted it because your function in C takes more characters to type than what it does. IE num % I is 7 characters including the spaces IsOdd(I) is 8 characters. Why would you create a function that is longer than just doing the operation? – Kevin Oct 22 '08 at 14:56
Instead of invoking abs(), just compare != 0. – Mattias Andersson Nov 27 '08 at 16:52
vote up 2 vote down

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.

link|flag
vote up 33 vote down

You guys are waaaaaaaay too efficient. What you really want is:

public boolean isOdd(int num) {
  int i = 0;
  boolean odd = false;

  while (i != num) {
    odd = !odd
    i = i + 1;
  }

  return odd;
}

Repeat for isEven.

Of course, that doesn't work for negative numbers. But with brilliance comes sacrifice...

link|flag
Up vote for making me grin first thing in the morning. Stackoverflow should give a badge for worst conceiveable answer / most entertaining answer. – Shane MacLaughlin Oct 2 '08 at 6:39
Funny, this is, but I don't agree in upvoting clearly demented solutions :-). Still, I'm not going to waste karma downvoting... – paxdiablo Oct 2 '08 at 6:59
1  
SO needs a "WTF?" flag as well as "offensive?", that would fix it :) – Tom Oct 2 '08 at 7:10
Brilliant - positively enterprisey – Duncan Smart Oct 2 '08 at 11:04
I have to agree... interesting, but little demented. If this were slashdot, you'd get an upvote for funny. I can't recommend this solution though :) – Wes P Oct 2 '08 at 12:17
show 4 more comments
vote up 3 vote down

One more solution to the problem
(children are welcome to vote)

bool isEven(unsigned int x)
{
  unsigned int half1 = 0, half2 = 0;
  while (x)
  {
     if (x) { half1++; x--; }
     if (x) { half2++; x--; }

  }
  return half1 == half2;
}
link|flag
true but overkill – Nathan Fellman Oct 2 '08 at 7:28
No, you are not the kind of child I counted on :) – eugensk00 Oct 2 '08 at 7:38
I was going to upvote this, but it's a bit slow on negative numbers. :) – Chris Young Oct 2 '08 at 9:24
All numbers are bright and positive. Or are you prejudiced against some? :)) – eugensk00 Oct 2 '08 at 11:19
In computers, all numbers once negative, eventually become positive. We call it the Rollover of Happiness (not applicable to BIGNUMS, YMMY, not valid in all states). – Will Hartung Oct 2 '08 at 15:18
vote up 5 vote down

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:


  isEven = (x & 1);

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:


  isEven = (x & 1) ^ ((-1 & 1) | ((x lessthan 0) ? 0 : 1)));

edit: thanks to ffpf for pointing out that the text box was eating everything after my lessthan character!

link|flag
I think your second code example is missing some text. – Jeff Yates Oct 2 '08 at 17:23
vote up 4 vote down

A nice one is:

bool isEven(unsigned int n)
{
  if (n == 0) 
    return true ;  // I know 0 is even
  else if (n == 1)
    return isOdd(n-1) ; // n is even if n-1 is odd
}

bool isOdd(unsigned int n)
{
  if (n == 0)
    return false ;
  else
    return isEven(n-1) ; // n is odd if n-1 is even
}

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 !

link|flag
This does not handle isOdd(0) well. – Steve McLeod Oct 2 '08 at 11:43
I think you've got an infinite loop (with tail recursion) or a stack overflow (without tail recursion) for isOdd() with any even values or isEven() with any odd values. It only terminates with true. It's the halting problem all over again. – Jeffrey L Whitledge Oct 2 '08 at 15:31
Oh, sure, fix it with no comment, and make me look like an idiot. That's fine. – Jeffrey L Whitledge Oct 3 '08 at 11:25
Now, you've got a compile error: in isEven not all code paths return a value. No, I haven't actually tried this code, it's the compiler in my head that's complaining. – Jeffrey L Whitledge Oct 3 '08 at 11:28
1  
compile error: not all paths return a value hate to bombard you with bug comments on your sample code, but what happens when you call isEven(5) – Kevin Oct 22 '08 at 15:02
show 1 more comment
vote up 3 vote down

I know this is just syntactic sugar and only applicable in .net but what about extension method...

public static class RudiGroblerExtensions
{
    public static bool IsOdd(this int i)
    {
        return ((i % 2) != 0);
    }
}

Now you can do the following

int i = 5;
if (i.IsOdd())
{
    // Do something...
}
link|flag
Nice code. Pity that it will claim that 2 is odd, and 3 is not. – Anthony Oct 2 '08 at 11:42
oops, sorry... my logic is wrong way round... – rudigrobler Oct 2 '08 at 13:00
vote up 13 vote down

[Joke mode="on"]

public enum Evenness
{
  Unknown = 0,
  Even = 1,
  Odd = 2
}

public static Evenness AnalyzeEvenness(object o)
{

  if (o == null)
    return Evenness.Unknown;

  string foo = o.ToString();

  if (String.IsNullOrEmpty(foo))
    return Evenness.Unknown;

  char bar = foo[foo.Length - 1];

  switch (bar)
  {
     case '0':
     case '2':
     case '4':
     case '6':
     case '8':
       return Evenness.Even;
     case '1':
     case '3':
     case '5':
     case '7':
     case '9':
       return Evenness.Odd;
     default:
       return Evenness.Unknown;
  }
}

[Joke mode="off"]

EDIT: Added confusing values to the enum.

link|flag
Wow... this is more demented than SCdF's solution! Kudos! No upvote though... can't recommend this. But thanks for the funny! – Wes P Oct 2 '08 at 12:19
The advantage of this approach is it works with more than just numbers. Also, if you replace this line: char bar = foo[foo.Length - 1]; with this: double bar = Char.GetNumericValue(foo[foo.Length - 1]); Then it will work with any number system. – Jeffrey L Whitledge Oct 2 '08 at 15:27
made me laugh out - frickin - loud – Kris Oct 13 '08 at 3:38
bug report: 14.65 is reported as odd when it should be unknown. – TheSoftwareJedi Oct 22 '08 at 14:55
Software Jedi, it's a "feature". ;) – Sklivvz Oct 23 '08 at 13:01
show 1 more comment
vote up 2 vote down

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.

link|flag
vote up 1 vote down

Portable:

i % 2 ? odd : even;

Unportable:

i & 1 ? odd : even;

i << (BITS_PER_INT - 1) ? odd : even;
link|flag
vote up 0 vote down
    MOV EAX, VALUE_TO_TEST
    AND EAX, 01
    JNZ VALUE_ODD
VALUE_EVEN:
    // Even code goes here
    JMP DONE:
VALUE_ODD:
    // Odd code goes here
DONE:
link|flag
1  
Something tells me that a person who doesn't know how to check if a number is odd probably doesn't know assembly... – mmyers Oct 2 '08 at 16:43
vote up 1 vote down

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: -

void tellMeIfItIsAnOddNumberPlease(int iToTest){
  int iLastDigit;
  iLastDigit = iToTest - (iToTest / 10 * 10);
  if (iLastDigit % 2 == 0){
    printf("The number %d is even!\n", iToTest);
  } else {
    printf("The number %d is odd!\n", iToTest);
  }
}

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: -

printf("%d%s\n",iToTest,0==(iToTest-iToTest/10*10)%2?" is even":" is odd");

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 (iToTest & 1) {
  // Even
} else {
  // Odd
}
link|flag
What exactly is wrong with just going iToTest%2==0? You are wasting a division extracting the last digit, so yours is twice as slow as it needs to be. – freespace Oct 3 '08 at 12:07
@freespace: I waste more than that, don't I? :-) A multiplication and a subtraction too. But what is most efficient between the two solutions I don't dare to say. Never claimed this to be the fastest solution, quite the opposite if you read the first line of my post again. – Tooony Oct 3 '08 at 13:06
@Tooony, ah, my humour hat fell off. It is formly back on now :D Sorry about that :) – freespace Oct 4 '08 at 4:10
vote up 0 vote down

If you want to be efficient, use bitwise operators (x & 1), but if you want to be readable use modulo 2 (x % 2)

link|flag
vote up 1 vote down

In the "creative but confusing category" I offer:

int isOdd(int n) { return n ^ n * n ? isOdd(n * n) : n; }

A variant on this theme that is specific to Microsoft C++:

__declspec(naked) bool __fastcall isOdd(const int x)
{
	__asm
	{
		mov eax,ecx
		mul eax
		mul eax
		mul eax
		mul eax
		mul eax
		mul eax
		ret
	}
}
link|flag
vote up 1 vote down
int isOdd(int i){
  return(i % 2);
}

done.

link|flag

Your Answer

Get an OpenID
or

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