aboutsummaryrefslogtreecommitdiff
path: root/Project2.cpp
blob: 80954a66f65b8c80f0bcb41afdcac724b1310281 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 = 10, choice = 0;
    while (choice != 7)
    {
        DisplayMenu(choice);
        ProcessMenuChocie(choice, num);
    }
}