Files
Java/src/main/java/com/thealgorithms/bitmanipulation/IsEven.java

15 lines
308 B
Java

package com.thealgorithms.bitmanipulation;
/**
* Checks whether a number is even
* @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
*/
public final class IsEven {
private IsEven() {
}
public static boolean isEven(int number) {
return (number & 1) == 0;
}
}