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

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

package xxl.mathematica.predication;

/**
 * 奇数判定
 */

public class OddQ {
    /**
     * 是否为奇数
     *
     * @param number
     * @return
     */
    public static boolean oddQ(int number) {
        return number % 2 != 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy