//File: Averaging.java import CSLib.*; public class Averaging { public static void main (String [] args) { //Input the scores InputBox in = new InputBox (); in.setPrompt ("How many scores?"); int n = in.readInt (); int [] score = new int [n]; //reserves n contiguous memory locations //The index or subscript starts at 0, not 1 for (int k=0; k