aboutsummaryrefslogtreecommitdiff
path: root/Project1/program.cpp
blob: 639a7ac2b41596fc610a2e7b870cd990659445ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// name: Connor McDowell
// date: 2/19/2024
// class: CST116
// reason: homework number 6

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

using std::cin;
using std::cout;
using std::endl;

//constexpr size_t MAX = 3;

int main()
{
    size_t MAX = 3;
    int O = 1;
    size_t t = 0;
    contact* newContact = new contact[MAX];
    while (O == 1)
    {
        int c = 0;
        cout << "1. Enter a contact\n";
        cout << "2. Update a contact\n";
        cout << "3. print all contacts\n";
        cout << "3. Delete a contact\n";
        cout << "4. Quit\n";
        cout << "\nEnter your choice: " << endl;
        cin >> c;
        //c = menu();
        if (c == 1)
        {
            addNew(&newContact[MAX], MAX, t);
            //cout << t << endl;
        }
        if (c == 2)
        {
            update(&newContact[MAX], MAX);
        }
        if (c == 3)
        {
            printAll(&newContact[MAX], MAX);
        }
        if (c == 5)
        {
            O = 0;
            delete[] newContact;
        }
        ++t;
        if (t >= MAX - 1)
        {
            *newContact = contact_double(&newContact[MAX], MAX, t);
            MAX = MAX * 2;
        }
    }
    return 0;
}