mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +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;
|
|
}
|
|
}
|