Util.java Source code

Java tutorial

Introduction

Here is the source code for Util.java

Source

import java.math.BigInteger;

public class Util {

    public static boolean isEven(BigInteger number) {
        return number.getLowestSetBit() != 0;
    }

}