vote up 4 vote down star

As an example in pseudocode:

if ( (a mod 2) == 0)

{
    isEven = true
}

else

{
    isEven = false
}
flag
Ha! ha! Everybody responded at the same time! – J D OConal Sep 18 '08 at 5:18
There's a reason... this is accessible knowledge, especially if you're blessed with a search engine. – Jay Bazuzi Sep 18 '08 at 5:52

8 Answers

vote up 21 vote down check

The modulus operator is %

To use you example:

if ( (a % 2) == 0)
{
    isEven = true
}
else
{
    isEven = false
}
link|flag
vote up 0 vote down

An alternative to the code from @Cody:

Using the modulus operator:

bool isEven = (a % 2) == 0;

I think this is marginally better code than writing if/else, because there is less duplication & unused flexibility. It does require a bit more brain power to examine, but the good naming of isEven compensates.

link|flag
vote up 0 vote down

Won't n & 0 always = 0? I think you want n & 1 == 0

link|flag
My mistake, thanks. --amadamala – amadamala Sep 18 '08 at 15:48
vote up 1 vote down

Also, mod can be used like this:

int a = 7;

a %= 2;

a would now equal 1. Because 7 % 2 = 1.

Just like most other operators.

link|flag
it is probably a mistake to use compound operators in an example for beginners, and without output. – Stu Thompson Sep 18 '08 at 6:48
This is probably true. – jjnguy Sep 18 '08 at 15:04
vote up 2 vote down
if (a % 2 == 0) {
} else {
}
link|flag
vote up 1 vote down

The modulo operator is % (percent sign). To test for evenness or generally do modulo for a power of 2, you can also use & (the and operator) like isEven = !( a & 1 ).

link|flag
vote up 29 vote down

Here is the representation of your pseudo-code in minimal Java code;

boolean isEven = (a % 2 == 0);

I'll now break it down into it's components. The modulus operator in Java is the percent character (%). Therefore taking an int % int returns another int. The double equals (==) operator is used to compare values, such as a pair of ints and returns a boolean. This is then assigned to the boolean variable 'isEven'. Based on operator precedence the modulus will be evaluated before the comparison.

link|flag
Upvoted, but might use some explaining, huh? See the 'beginner' tag? – AndrĂ© Neves Sep 18 '08 at 5:22
I guess I could have put more detail into it. I've been using Java for so long that I forget what detail needs to be included at a beginner level. – martinatime Sep 18 '08 at 6:33
you can edit the post ;) – Stu Thompson Sep 18 '08 at 6:43
vote up 3 vote down

% is the modulus operator

link|flag

Your Answer

Get an OpenID
or

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