//File:	TestNumberList.java
import iostuff.*;
public class TestNumberList
{
	public static void main (String [] args)
	{
		int [] number = {10, 20, 30};	//Reserves exactly 3 memory locations
                                                //AND assigns: number[0]=10, number[1]=20, number[2]=30

		System.out.println ("The list of numbers is: "  );
		NumberList.display(number);
		
		System.out.println ("The smallest number in the list is:  "
							+ NumberList.smallest (number));
							
		System.out.println ("The average of the list of numbers is: "
							+ NumberList.average (number));
	}
}