/**************************************************************************
* AUTHOR : Carl Argila *
* STUDENT ID : 1234567890 *
* LAB #1 : Eclipse Lab *
* CLASS : CSC5 *
* SECTION : TTh 6PM - 9:10PM *
* DUE DATE : 8/28/2014 *
*************************************************************************/
#include <iostream>
#include <iomanip>
using namespace std;
int main ()
{
/**********************************************************************
* CONSTANTS
* --------------------------------------------------------------------
* PROGRAMMER : Programmer's Name
* CLASS : Student's Course
* SECTION : Class Days and Time
* LAB_NUM : Lab Number
* LAB_NAME : Title of the Lab
*********************************************************************/
const char PROGRAMMER[30] = "Carl Argila";
const char CLASS[5] = "CSC5";
const char SECTION[25] = "TTh 6PM - 9:10PM";
const int LAB_NUM = 1;
const char LAB_NAME[17] = "Eclipse Tutorial";
cout << left;
cout << "**************************************************";
cout << "\n* PROGRAMMED BY : " << PROGRAMMER;
cout << "\n* " << setw(14) << "CLASS" << ": " << CLASS;
cout << "\n* " << setw(14) << "SECTION" << ": " << SECTION;
cout << "\n* LAB #" << setw(9) << LAB_NUM << ": " << LAB_NAME;
cout << "\n**************************************************\n\n";
cout << right;
return 0;
}