blob: f78c8e7bef3e22c083c494c8be5727587ea03ccb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//=============================================
// CODE FOR MODULE 7: LAB 7 PROGRAM IS BELOW
//=============================================
#include "Header.h"
int main()
{
int menu_choice = 0;
int current_place = 1;
string string_array[MAX_STRINGS];
do
{
displayMenu(menu_choice); //displays menu, takes in user menu choice
processMenuChoice(menu_choice, string_array, current_place); //processes menu choice, calls relevant function
} while (menu_choice != 5);
}
|