As an example in pseudocode:
if ( (a mod 2) == 0)
{
isEven = true
}
else
{
isEven = false
}
|
|
|||||
|
|
|
The modulus operator is % To use you example:
|
|||
|
|
|
|
An alternative to the code from @Cody: Using the modulus operator:
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 |
||
|
|
|
|
Won't n & 0 always = 0? I think you want n & 1 == 0 |
||
|
|
|
Also, mod can be used like this:
Just like most other operators. |
||||
|
|
|
|
|||
|
|
|
|
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 ). |
||
|
|
|
|
Here is the representation of your pseudo-code in minimal Java code;
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. |
||||||
|
|
|
|
||
|
|