mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
15 lines
308 B
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;
|
|
}
|
|
}
|