Prelab Exercises
Chapter 1

    Your task is to write a Java program that will print out the following message (including the row of equal marks):
                                          
            Computer Science, Yes!!!!
            =========================   
    
    
    An outline of the program is below. Complete it as follows:
    1. In Eclipse, create a project named "FirstLab".
    2. In that project create a new class named "CSYes". Make sure the capitalization is exactly as specified.
    3. Alter the content of that file to be the same as the example below. Make sure you replace all the "boilerplate" code that Eclipse automatically generated when you made the new class.
    4. In the documentation at the top (the lines starting with "//"), fill in the name of the class and a brief description of what it does.
    5. Create a main method that prints the desired output. (See an example program from your text, such as FirstProgram, to see what main should look like.)
    
    // *******************************************************************
    // Class Name:
    //
    // Purpose:
    // *******************************************************************
    
    public class CSYes
    {
       // -------------------------------------------------
       //  The following main method prints an exciting
       //  message about computer science
       // -------------------------------------------------
    
    
    
    
    
    
    
    
    
    
    
    
    }
    

To submit:

The file CSYes.java. In the "FirstProgram" section of your lab document, copy and paste the output generated by your program.