import Myro.*; public class ArrayPratice { private int[ ] myNumbers = new int[100]; private static final int INITIALNUM = 10; private int top = 0; //Initialize a sorted array. It will have INITIALNUM elements. //top will have the value of the first uninitialized element public ArrayPratice() { System.out.println(); System.out.println(); for (int i=0; i