//File: Average2.java import CSLib.*; import java.text.DecimalFormat; public class Average2 { public static void main (String [] args) { InputBox in; OutputBox out; double number []; int n; in = new InputBox(); out = new OutputBox(); in.setPrompt ("How many numbers? "); n = in.readInt(); number = new double [n]; //Inputs the numbers into the array for (int k=0; k