// // SIEVE. The Sieve of Eratosthenes. // // James B. Moen // 08 Oct 19 // // Test the SIEVE class, for 30 points total. // // // Put your code for the class SIEVE here!!! // class Sieve { private boolean[] numbers; private int realMax; public Sieve(int max){ if (max<2) throw new IllegalArgumentException(); numbers = new boolean[max]; realMax = (max - 1); for (int i=2; i