//********************************************************************
//  Primes.java       Author: Lewis and Loftus
//
//  Demonstrates the use of an initializer list for an array.
//********************************************************************

public class Primes
{
   //-----------------------------------------------------------------
   //  Stores some prime numbers in an array and prints them.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      int[] primes = {2, 3, 5, 7, 11, 13, 17, 19};
      
      System.out.println ("Array length: " + primes.length);

      System.out.println ("The first few prime numbers are:");

      for (int prime = 0; prime < primes.length; prime++)
         System.out.print (primes[prime] + "  ");

      System.out.println ();
   }
}
