#include #include #include #include "simulation.h" #include "queueAsArray.h" using namespace std; void setSimulationParameters(int& sTime, int& numOfServers, int& transTime, int& tBetweenCArrival); void runSimulation(); int main() { runSimulation(); return 0; } void setSimulationParameters(int& sTime, int& numOfServers, int& transTime, int& tBetweenCArrival) { cout << "Enter the simulation time: "; cin >> sTime; cout << endl; cout << "Enter the number of servers: "; cin >> numOfServers; cout << endl; cout << "Enter the transaction time: "; cin >> transTime; cout << endl; cout << "Enter the time between customer arrivals: "; cin >> tBetweenCArrival; cout << endl; } void runSimulation() { cout << "Write the definition of the function runSimulation." << endl; cout << "See programming Exercise 8." << endl; }