-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path通讯录
295 lines (262 loc) · 6.14 KB
/
通讯录
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
#include<iostream>
#include <string>
using namespace std;
#define MAX 500
//设计联系人结构体
struct Person
{
string m_name;
int m_sex;
int m_age;
string m_phone;
string m_address;
};
//通讯录结构体
struct Addressbooks
{
//通讯录保存联系人数组
struct Person personArray[MAX];
//通讯录中当前记录人数
int m_size=0;
};
//封装showmenu函数,在main函数中调用
//菜单界面
void showmenu() {
cout << "****************************" << endl;
cout << "***** 1.添加联系人 *****" << endl;
cout << "***** 2.显示联系人 *****" << endl;
cout << "***** 3.删除联系人 *****" << endl;
cout << "***** 4.查找联系人 *****" << endl;
cout << "***** 5.修改联系人 *****" << endl;
cout << "***** 6.清空联系人 *****" << endl;
cout << "***** 0.退出通讯录 *****" << endl;
cout << "****************************" << endl;
}
//添加联系人
void addPerson(Addressbooks* abs) {
//判断通讯录是否已满
if (abs->m_size == MAX) {
cout << "通讯录已满!" << endl;
return;
}
else {
//添加联系人
//姓名
cout << "请输入姓名:";
string name;
cin >> name;
abs->personArray[abs->m_size].m_name = name;
//性别
int sex = 0;
while (true) {
cout << "请选择性别:";
cout << "1 --- 男"<< " 2 --- 女" << endl;
cout << " ";
cin >> sex;
if (sex == 1 || sex == 2) {
abs->personArray[abs->m_size].m_sex = sex;
break;
}
else {
cout << "输入有误,请重新输入" << endl;
}
}
//年龄
int age = 0;
while (true) {
cout <<"请输入年龄:";
cin >> age;
if (age > 0 && age < 100) {
abs->personArray[abs->m_size].m_age = age;
break;
}
cout << "输入错误!" << endl;
}
//电话号码
cout << "请输入电话号码:";
string phone;
cin >> phone;
abs->personArray[abs->m_size].m_phone = phone;
//家庭住址
cout << "请输入家庭住址:";
string address;
cin >> address;
abs->personArray[abs->m_size].m_address = address;
abs->m_size++;
cout << "添加成功!" << endl;
//清屏函数
system("pause");//按任意键继续
system("cls");
}
}
//显示联系人
void showPerson(Addressbooks* abs) {
//判断当前通讯录是否为空
if (!abs->m_size) {
cout << "当前记录为空,无联系人" << endl;
}
else {
for (int i = 0; i < abs->m_size; i++) {
cout << "姓名:" << abs->personArray[i].m_name << "\t";
cout << "性别:" <<( abs->personArray[i].m_sex == 1?"男":"女")<< "\t";
cout << "年龄:" << abs->personArray[i].m_age << "\t";
cout << "电话:" << abs->personArray[i].m_phone << "\t";
cout << "住址:" << abs->personArray[i].m_address << endl;
}
}
system("pause");
system("cls");
}
int isexist(string name,Addressbooks* abs) {
for (int i = 0; i < abs->m_size; i++) {
if (name == abs->personArray[i].m_name) {
return i;
}
}
return -1;
}
//删除联系人
void deletePerson(Addressbooks* abs) {
cout << "请输入要删除的联系人姓名:";
string name;
cin >> name;
int ret = isexist(name, abs);
if (ret!=-1) {
for (int i = ret; i < abs->m_size-1; i++) {
abs->personArray[i] = abs->personArray[i + 1];
}
abs->m_size--;
cout << "删除成功!" << endl;
}
else {
cout<<"查无此人。"<<endl;
}
system("pause");
system("cls");
}
//查找联系人
void searchPerson(Addressbooks* abs) {
if (abs->m_size == 0) {
cout << "当前通讯录为空!" << endl;
}
cout << "请输入要查找的联系人姓名:";
string name;
cin >> name;
int ret = isexist(name, abs);
if (ret != -1) {
cout << "姓名:" << abs->personArray[ret].m_name << "\t";
cout << "性别:" << (abs->personArray[ret].m_sex == 1 ? "男" : "女") << "\t";
cout << "年龄:" << abs->personArray[ret].m_age << "\t";
cout << "电话:" << abs->personArray[ret].m_phone << "\t";
cout << "住址:" << abs->personArray[ret].m_address << endl;
}
else {
cout << "查无此人。" << endl;
}
system("pause");
system("cls");
}
//修改联系人
void editPerson(Addressbooks* abs) {
if (abs->m_size == 0) {
cout << "当前通讯录为空!" << endl;
}
cout << "请输入要修改的联系人姓名:";
string name;
cin >> name;
int ret = isexist(name, abs);
if (ret != -1) {
cout << "请输入姓名:";
string name;
cin >> name;
abs->personArray[ret].m_name = name;
//性别
int sex = 0;
while (true) {
cout << "请选择性别:";
cout << "1 --- 男" << " 2 --- 女" << endl;
cout << " ";
cin >> sex;
if (sex == 1 || sex == 2) {
abs->personArray[ret].m_sex = sex;
break;
}
else {
cout << "输入有误,请重新输入" << endl;
}
}
//年龄
int age = 0;
while (true) {
cout << "请输入年龄:";
cin >> age;
if (age > 0 && age < 100) {
abs->personArray[ret].m_age = age;
break;
}
cout << "输入错误!" << endl;
}
//电话号码
cout << "请输入电话号码:";
string phone;
cin >> phone;
abs->personArray[ret].m_phone = phone;
//家庭住址
cout << "请输入家庭住址:";
string address;
cin >> address;
abs->personArray[ret].m_address = address;
cout << "添加成功!" << endl;
}
else {
cout << "查无此人。" << endl;
}
system("pause");
system("cls");
}
//清空联系人
void clearPerson(Addressbooks* abs) {
abs->m_size = 0;
cout << "通讯录已清空" << endl;
system("pause");
system("cls");
}
int main() {
//创建通讯录结构体变量
Addressbooks abs;
//初始化通讯录当前人员个数
abs.m_size = 0;
int select = -1;
while (true) {
showmenu();
cin >> select;
switch (select) {
case 1://1.添加联系人
addPerson(&abs);
break;
case 2://2.显示联系人
showPerson(&abs);
break;
case 3://3.删除联系人
deletePerson(&abs);
break;
case 4://4.查找联系人
searchPerson(&abs);
break;
case 5://5.修改联系人
editPerson(&abs);
break;
case 6://6.清空联系人
clearPerson(&abs);
break;
case 0://0.退出通讯录
cout << "欢迎下次使用" << endl;
system("pause");
return 0;
default:
break;
}
}
system("pause");
return 0;
}