Showing posts with label modulus. Show all posts
Showing posts with label modulus. Show all posts

Java isEven() using modulus operator



    public static boolean isEven(int x)

    {

return (x % 2) == 0;

    }



As an Amazon Associate I earn from qualifying purchases.

apt quotation..