forked from ASD-ADF/ASD_Task_3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
110 lines (102 loc) · 2.55 KB
/
main.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#include <iostream>
#include "list.h"
#include "operation.h"
#include "my_data.h"
using namespace std;
void mainMenu();
List L, L_passed;
int main() {
createList(L);
createList(L_passed);
mainMenu();
return 0;
}
void mainMenu() {
address P;
infotype H;
/**
* IS : List has been created
* PR : prints menu to user
* 1. insert new data
* 2. print all data (List L)
* 3. find and print a data by ID
* 4. edit data by ID
* 5. delete data by ID
* 6. separate passed member
* 7. print all data (List L2)
* 0. exit
*/
//-------------your code here-------------
int choice;
do {
cout<<"Menu"<<endl;
cout<<"1. insert"<<endl;
cout<<"2. view member"<<endl;
cout<<"3. find and view"<<endl;
cout<<"4. find and edit"<<endl;
cout<<"5. find and delete"<<endl;
cout<<"6. separate passed member"<<endl;
cout<<"7. view passed member"<<endl;
cout<<"0. exit"<<endl;
cout<<"input choice: ";
cin>>choice;
switch(choice) {
case 1:
H = create_data();
insertAndSort(L,H);
break;
case 2:
printInfo(L);
break;
case 3:
cout << "Masukkan ID: ";
cin >> H.ID;
P = findElm(L, H);
if (P != NULL)
{
view_data(info(P));
}
else
{
cout << "ID Data yang anda cari tidak ada\n";
}
break;
case 4:
cout << "Masukkan ID: ";
cin >> H.ID;
P = findElm(L, H);
if (P != NULL)
{
edit_data(info(P));
}
else
{
cout << "ID Data yang anda cari tidak ada\n";
}
break;
case 5:
cout << "Masukkan ID: ";
cin >> H.ID;
if (findElm(L, H) != NULL)
{
deletebyID(L, H.ID);
}
else
{
cout << "Not Found" << endl;
}
break;
case 6:
savePassedMember(L, L_passed);
cout<<"Member yang LULUS udah selesai"<<endl;
break;
case 7:
cout<<"Data mahasiswa yang LULUS : "<<endl;
printInfo(L_passed);
break;
default:
exit(0);
}
} while(true);
//----------------------------------------
}