C++实现管理系统的示例代码

时间:2021-09-17 03:58:46

概述

系统中需要实现的功能如下:

  • 添加联系人:向通讯录中添加新人,信息包括(姓名、性别、年龄、联系电话、家庭住址)最多记录1000人
  • 显示联系人:显示通讯录中所有的联系人信息
  • 删除联系人:按照姓名进行删除指定联系人
  • 查找联系人:按照姓名查看指定联系人信息
  • 修改联系人:按照姓名重新修改指定联系人
  • 清空联系人:清空通讯录中所有信息
  • 退出通讯录:退出当前使用的通讯录

步骤

新建结构体

contact.h

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4.  
  5. struct Contact
  6. {
  7. string name;//姓名
  8. string sex;//性别
  9. int age;//年龄
  10. int phoneNumber;//联系电话
  11. string address;//家庭地址
  12. };
  13.  
  14. void printContactInfo(const Contact *p);

定义

contact.cpp

  1. #include "Contact.h"
  2.  
  3. void printContactInfo(const Contact * p)
  4. {
  5. cout << "姓名:" << p->name <<
  6. "---性别:" << p->sex <<
  7. "---年龄:" << p->age <<
  8. "---联系电话:" << p->phoneNumber <<
  9. "---家庭地址:" << p->address << endl;
  10. }

ContactManager.h

  1. #include<iostream>
  2. #include "Contact.h"
  3. using namespace std;
  4.  
  5. #define MAX 1000
  6.  
  7. struct ContactManager
  8. {
  9. //联系人数组
  10. Contact contactArr[MAX];
  11. //当前联系人数量
  12. int size;
  13. };
  14.  
  15. void showMenu();
  16. void exitSys();
  17. void addContact(ContactManager *manager);
  18. void showContactList(ContactManager *manager);
  19. void delContactByName(ContactManager *manager);
  20. void findContactByName(ContactManager *manager);
  21. void updateContactByName(ContactManager *manager);
  22. void clearManager(ContactManager *manager);

实现管理者

实现菜单功能

  1. #include "ContactManager.h"
  2.  
  3. void showMenu()
  4. {
  5. cout << "*********************************************" << endl;
  6. cout << "******** 1、添加联系人 ************" << endl;
  7. cout << "******** 2、显示联系人 ************" << endl;
  8. cout << "******** 3、删除联系人 ************" << endl;
  9. cout << "******** 4、查找联系人 ************" << endl;
  10. cout << "******** 5、修改联系人 ************" << endl;
  11. cout << "******** 6、清空联系人 ************" << endl;
  12. cout << "******** 0、退出通讯录 ************" << endl;
  13. cout << "*********************************************" << endl;
  14. cout << "-----> 请选择操作项并输入操作项编号:" << endl;
  15. }

实现退出功能

  1. void exitSys()
  2. {
  3. cout << "欢迎下次使用,再见" << endl;
  4. system("pause");
  5. }

新增联系人

  1. void addContact(ContactManager *manager)
  2. {
  3. cout << "请输入联系人姓名:";
  4. cin >> manager->contactArr[manager->size].name;
  5. cout << "请输入联系人性别:";
  6. cin >> manager->contactArr[manager->size].sex;
  7. cout << "请输入联系人年龄:";
  8. cin >> manager->contactArr[manager->size].age;
  9. cout << "请输入联系人号码:";
  10. cin >> manager->contactArr[manager->size].phoneNumber;
  11. cout << "请输入联系人地址:";
  12. cin >> manager->contactArr[manager->size].address;
  13. cout << "添加联系人成功!!!" << endl;
  14. manager->size++;
  15. system("pause");
  16. system("cls");
  17. }

展示联系人列表

  1. void showContactList(ContactManager * manager)
  2. {
  3. for (int i = 0; i < manager->size; i++)
  4. {
  5. printContactInfo(&manager->contactArr[i]);
  6. }
  7. system("pause");
  8. system("cls");
  9. }

删除联系人

  1. void delContactByName(ContactManager * manager)
  2. {
  3. cout << "请输入要删除联系人的姓名:";
  4. string name;
  5. cin >> name;
  6. int pos = isExist(manager, name);
  7. if (pos == -1)
  8. {
  9. cout << "联系人不存在!!" << endl;
  10. }
  11. else
  12. {
  13. cout << "联系人的位置在" << pos << endl;
  14. //数据前移
  15. for (int i = pos; i < manager->size; i++)
  16. {
  17. manager->contactArr[pos] = manager->contactArr[pos + 1];
  18. }
  19. cout << "删除联系人成功!!" << endl;
  20. manager->size--;
  21. }
  22.  
  23. system("pause");
  24. system("cls");
  25. }

查找联系人

  1. void findContactByName(ContactManager * manager)
  2. {
  3. cout << "请输入要查找联系人的姓名:";
  4. string name;
  5. cin >> name;
  6. int pos = isExist(manager, name);
  7. if (pos == -1)
  8. {
  9. cout << "联系人不存在!!" << endl;
  10. }
  11. else
  12. {
  13. printContactInfo(&manager->contactArr[pos]);
  14. }
  15.  
  16. system("pause");
  17. system("cls");
  18. }

更新联系人

  1. void updateContactByName(ContactManager * manager)
  2. {
  3. cout << "请输入要修改联系人的姓名:";
  4. string name;
  5. cin >> name;
  6. int pos = isExist(manager, name);
  7. if (pos == -1)
  8. {
  9. cout << "联系人不存在!!" << endl;
  10. }
  11. else
  12. {
  13. cout << "请输入联系人性别:";
  14. cin >> manager->contactArr[pos].sex;
  15. cout << "请输入联系人年龄:";
  16. cin >> manager->contactArr[pos].age;
  17. cout << "请输入联系人号码:";
  18. cin >> manager->contactArr[pos].phoneNumber;
  19. cout << "请输入联系人地址:";
  20. cin >> manager->contactArr[pos].address;
  21. cout << "修改联系人成功!!!" << endl;
  22. }
  23. system("pause");
  24. system("cls");
  25. }

清空通讯录

  1. void clearManager(ContactManager * manager)
  2. {
  3. manager->size = 0;
  4. cout << "清空联系人成功!!!" << endl;
  5. system("pause");
  6. system("cls");
  7. }

运行截图

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

 

C++实现管理系统的示例代码

那么整体的项目到这里就算完成了。

到此这篇关于C++实现管理系统的示例代码的文章就介绍到这了,更多相关C++ 管理系统内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://juejin.im/post/6880421961743204365