aboutsummaryrefslogtreecommitdiff
path: root/Project2.cpp
blob: 0cbf859421311074b4b4334f4bdfd805d26a7886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Project2.cpp : This file contains the 'main' function. Program execution begins and ends there.
// Written by Jacob Knox
//

#include <iostream>
#include "header.h"

using namespace std;

int main()
{
    int num = 0, choice = 0;
    GetData(num);

    while (choice != 6)
    {
        DisplayMenu(choice);
        ProcessMenuChocie(choice, num);
    }

    cout << "Exiting Program...";
}