I need C++ program project with functions and enum included

jeprej
antPath.cpp

#include <iostream> #include <cstdlib> #include <ctime> #include <string> using namespace std; const int row = 10; const int col = 10; void studentInfo() { cout << endl; cout << endl; cout << endl; cout << " +----------------------------------------------------+ " << endl; cout << " | Computer Science and Engineering | " << endl; cout << " | CSCE 1030 - Computer Science I | " << endl; cout << " | Kerimjan Rejepov kr1170 kr1170@my.unt.edu | " << endl; cout << " +----------------------------------------------------+ " << endl; cout << endl; cout << endl; cout << endl; } void projectIntro() { cout << " W e l c o m e t o A n t h o n y's h u n c h " << endl; cout << " ------------------------------------------------------------------------ " << endl; cout << " This program will set up a matrix that represents the pheromone levels " << endl; cout << " between ant colonies. Anthony's objective is to the find a path least " << endl; cout << " taken by the other ants in the hopes of finding food to last through the" << endl; cout << " winter " << endl; cout << " ------------------------------------------------------------------------ " << endl; cout << endl; cout << endl; cout << endl; } void makeArray(int matrix[][col], int row, int col) { int pheramoneLevel; cout << "A B C D E F G H I J" << endl; cout << "----------------------------" << endl; for (int i = 0; i < row; ++i) { for (int j = 0; j < col; ++j) { pheramoneLevel = (rand() % 21); matrix[i][j] = pheramoneLevel; } } } void organizeArray(int matrix[][col], int row, int col) { int min; for (int i = 0; i < row; ++i) { for (int j = 0; j < col; ++j) { if (matrix[i][j] < 10) { cout << "0" << matrix[i][j] << " "; } else { cout << matrix[i][j] << " " ; } } cout << endl; } cout << endl; cout << endl; cout << endl; for (int j = 0; j < col; ++j) { min = matrix[0][0]; if (matrix[0][j] < min) { min = matrix[0][j]; } cout << min << endl; } } int main() { int matrix[10][10]; int row = 10; int col = 10; int pheramoneLevel; int minFirstRow; int i; int j; srand(time(0)); studentInfo(); projectIntro(); makeArray(matrix, row, col); organizeArray(matrix, row, col); return 0; }