// Page 123 - 124 public class Prog_10_1 { public static void main(String[] args) { int[] myArr = {7, 5, 11, 2, 16, 4, 18, 14, 12, 30}; int size = myArr.length; System.out.println("The array size is: " + size); outPut(myArr); } private static void outPut (int[] myArr) { int k; for (k=0; k