Search Results

21
votes

What’s the syntax for mod in java

The modulus operator is % To use you example: if ( (a % 2) == 0) { isEven = true } else { isEven = false } …