public class OddNumbers { public static void main (String[] argv) { // Declare an array variable (to hold int's) and initialize // it with values. int[] oddIntegers = {1, 3, 5, 7, 9}; // Print some attributes of the array. System.out.println ("Array length: " + oddIntegers.length); System.out.println ("First index=0, last index=" + (oddIntegers.length-1)); // Next, the elements along one line. System.out.print ("Array elements: "); for (int i=0; i