From 175721a63b426355274fa9e8063f762020ab8362 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 30 Jan 2020 16:55:04 -0600 Subject: R E A R R A N G E --- csci1913/Java/lab5_strap012.java | 90 ---------------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 csci1913/Java/lab5_strap012.java (limited to 'csci1913/Java/lab5_strap012.java') diff --git a/csci1913/Java/lab5_strap012.java b/csci1913/Java/lab5_strap012.java deleted file mode 100644 index 45a101b..0000000 --- a/csci1913/Java/lab5_strap012.java +++ /dev/null @@ -1,90 +0,0 @@ -// -// 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