/**************************************************************************
* AUTHOR : David Azzolina *
* STUDENT ID : 1262340 *
* LAB #1 : IDEone Lab *
* CLASS : CS1A *
* SECTION : TTh 10:30AM - 12:50PM *
* DUE DATE : 1/26/2023 *
*************************************************************************/
#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] = "David Azzolina";
const char CLASS[5] = "CS1A";
const char SECTION[25] = "TTh 10:30AM - 12:50PM";
const int LAB_NUM = 1;
const char LAB_NAME[17] = "IDEone Lab";
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;
}