All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xxl.mathematica.predication.EvenQ Maven / Gradle / Ivy

package xxl.mathematica.predication;

/**
 * 偶数判定
 */

public class EvenQ {
    /**
     * 是否为偶数
     *
     * @param number
     * @return
     */
    public static boolean evenQ(int number) {
        return number % 2 == 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy