/**************************************************************************
* AUTHOR : Nicolas Ruano *
* STUDENT ID : 1275573 *
* LAB #1 : Eclipse Lab *
* CLASS : CS1A *
* SECTION : T&Th 01:30 P.M. - 02:50 P.M *
* DUE DATE : 08/21/2025 *
*************************************************************************/
#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] = "NIC0LAS_RUAN0";
const char CLASS[5] = "CS1A";
const char SECTION[35] = "T&Th 01:30 P.M. - 02:50 P.M.";
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;
}