/********************************************************************* * Author: Eric Heim * Date Created: 6/14/2011 * Course: CS0007 * Description: Shows the initialization and use of an array *********************************************************************/ public class ArrayInitialization { public static void main(String[] args) { int[] daysInMonth = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; for(int i = 0; i < 12; i++) { System.out.println("Month " + (i+1) + " has " + daysInMonth[i] + " days."); } } }