cvsproj/src/mypkg/SayHello.java

// CVS collaborative COP-2805 (Java II) project.
// $Id: SayHello.java,v 1.16 2013/02/10 08:37:16 kzawalski Exp $

package mypkg;

public class SayHello
{
    public static void main ( String [] args )
    {
        int counter = 0;

        // (1) Add your own output below that includes your name.
        // (2) Place "counter++;" command after your contribution, to keep count.
        // (3) Keep the last println statement at the very end.

        System.out.println( "Howdy!  My name is Wayne Pollock." );
        counter++;

        System.out.println( "Hey, this is Dave Maldonado." );
        counter++;

        System.out.println( "Hey, this is Urban Areingdale." );
        counter++;

        System.out.println( "Yo yo, this is Romell Martin - 'sup!." );
        counter++;

        System.out.println( "Hi, this is Ramen Otero's contribution to project #2" );
        counter++;

        System.out.println("Good afternoon, this is Raymond Tam.");
        counter++;

        System.out.println("Hi, Good Morning, this is Luis Balbuena.");
        counter++;

        System.out.println("Hola, my name is Joyce Sullivan.");
        counter++;

        System.out.println("Hi, this is Andrew Medeiros.");
        counter++;

        System.out.println("Hi, I am Danielle Mundy!");
        counter++;

        System.out.println( "Hi there, this is Shawn Smith." );
        counter++;

        int lCounter = 0; // Lucielsa's Counter to create a frame.
        do
        {
        	lCounter++;
        	System.out.print(" * -");
        	   if (lCounter == 9)
        	   {
        		 System.out.println("\n| Buenos Dias ...!  -Lucielsa Diaz- |");
        	   }

        } while (lCounter < 18);
        System.out.println();
        counter++;

        System.out.println("Cheers, I am Lalitha Bhamidipati");
        counter++;

        System.out.println( "Hello, this is Kristopher Zawalski");
        counter++;

        System.out.println( "\nNumber of students who edited this file: " + counter );
    }
}