1.功能截图
2.代码
#include<iostream>
#include<string>
using namespace std;
#define MAX 1000
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;
};
string str[3]={"","男","女"};
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(struct AddressBooks *abs) {
if (abs->m_Size == MAX) {
cout << "通讯录人数已满,无法添加" << endl;
return;
}
else {
string name;
cout << "请输入姓名:" << endl;
cin >> name;
abs->personArray[abs->m_Size].m_Name = name;
int sex;
cout << "请输入性别:" << endl;
cout << "1----男"<<endl;
cout << "2----女"<<endl;
while (true) {
cin >> sex;
if (sex == 2 || sex == 1) {
abs->personArray[abs->m_Size].m_Sex = sex;
break;
}
cout << "输入有误,请从新输入" << endl;
}
int age;
cout << "请输入年龄" << endl;
cin >> age;
abs->personArray[abs->m_Size].m_Age = age;
string phone;
cout << "请输入电话号码" << endl;
cin >> phone;
abs->personArray[abs->m_Size].m_Phone = phone;
string address;
cout << "请输入地址" << endl;
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 == 0) {
cout << "当前记录为空" << endl;
}
else {
for (int i = 0; i < abs.m_Size; i++) {
cout << "姓名: " << abs.personArray[i].m_Name
<< " " << "性别: " << str[abs.personArray[i].m_Sex]
<< " " << "年龄:" << abs.personArray[i].m_Age
<< " " << "电话:" << abs.personArray[i].m_Phone
<< " " << "地址: " << abs.personArray[i].m_Address << endl;
}
}
system("pause");
system("cls");
}
int isExist(AddressBooks *abs,string name) {
for (int i = 0; i < abs->m_Size; i++) {
if (abs->personArray[i].m_Name == name) {
return i;
}
}
return -1;
}
void deletePerson(AddressBooks *abs) {
cout << "请输入联系人的姓名" << endl;
string name;
cin >> name;
if (isExist(abs, name) == -1) {
cout << "没有查到此人" << endl;
}
else {
int index = isExist(abs, name);
for (int i = index; i < abs->m_Size; i++) {
abs->personArray[i] = abs->personArray[i++];
}
abs->m_Size--;
cout << "删除成功" << endl;
}
system("pause");
system("cls");
}
void findPerson(AddressBooks * abs) {
cout << "请输入你要查找的联系人姓名" << endl;
string name;
cin >> name;
int ret = isExist(abs, name);
if (ret!= -1) {
cout << "姓名: " << abs->personArray[ret].m_Name
<< " " << "性别: " << str[abs->personArray[ret].m_Sex]
<< " " << "年龄:" << abs->personArray[ret].m_Age
<< " " << "电话:" << abs->personArray[ret].m_Phone
<< " " << "地址: " << abs->personArray[ret].m_Address << endl;
}
else {
cout << "查无此人" << endl;
}
system("pause");
system("cls");
}
void modifyPerson(AddressBooks *abs) {
cout << "请输入你要修改的联系人姓名" << endl;
string name;
cin >> name;
int ret = isExist(abs, name);
if (ret != -1) {
string name;
cout << "请输入姓名:" << endl;
cin >> name;
abs->personArray[ret].m_Name = name;
int sex;
cout << "请输入性别:" << endl;
cout << "1----男" << endl;
cout << "2----女" << endl;
while (true) {
cin >> sex;
if (sex == 2 || sex == 1) {
abs->personArray[ret].m_Sex = sex;
break;
}
cout << "输入有误,请从新输入" << endl;
}
int age;
cout << "请输入年龄" << endl;
cin >> age;
abs->personArray[ret].m_Age = age;
string phone;
cout << "请输入电话号码" << endl;
cin >> phone;
abs->personArray[ret].m_Phone = phone;
string address;
cout << "请输入地址" << endl;
cin >> address;
abs->personArray[ret].m_Address = address;
}
else {
cout << "查无此人" << endl;
}
system("pause");
system("cls");
}
void clearPerson(AddressBooks *abs) {
abs->m_Size = 0;
cout << "清空成功" << endl;
system("pause");
system("cls");
}
int main() {
struct AddressBooks abs;
abs.m_Size = 0;
int select = 0;
while (true) {
showMenu();
cin >> select;
switch (select) {
case 1:
addPerson(&abs);
break;
case 2:
showPerson(abs);
break;
case 3:
deletePerson(&abs);
break;
case 4:
findPerson(&abs);
break;
case 5:
modifyPerson(&abs);
break;
case 6:
clearPerson(&abs);
break;
case 0:
cout << "欢迎下次使用" << endl;
system("pause");
return 0;
break;
}
}
system("pause");
return 0;
}
|