import java.io.*; class Thursday07 { final static int DEFAULT_SIZE = 1000000; static double [] inputs; public static void main (String [] args) { // I/O stuff setup PrintWriter pw = new PrintWriter (System.out, true); inputs = new double[DEFAULT_SIZE]; double answer = 0; double [] tidiedInputs; // an array to hold the cleaned up input int howMany = grabStuff(); // ask for data tidiedInputs = tidy(inputs, howMany); // shrink-wrapping the input for (int i=0; i