/** * Title: ArrayPlay * Description: Demonstration of arrays * @author hollingd@cs.rpi.edu */ public class ArrayPlay{ public static void main(String[] args) { // create an array of ints and check to find out the default values int [] a = new int[10]; for (int i=0;i