one , Assignment title

Personal address book management system (2016 year 11 month 03 day )
Create an address book , Enter name , Telephone number , Address and other information , Then display the address book , lookup , add to , Modification and deletion .
Functional requirements :
(1) Each message in the address book includes a name , Company , fixed telephone , Mobile phone , classification ( Same thing , friend , classmate , Family, etc ),EMAIL,QQ etc .
(2) Input function : You can input several pieces of information at one time .
(3) Display function : Complete the display of all address book information ( Maximum display on one screen 10 strip , More than ten lines shall be able to be automatically displayed in separate screens )
(4) Find function : You can search communication information by name and other methods
(5) increase , delete , Modify function : Complete various updates of address book information

two , source code

1. Header file

class.h
#ifndef CLASS_H #define CLASS_H #include<string> using namespace std; class
Person { public: string getName(){return m_sName;} string getCompany(){return
m_sCompany;} string getMobile(){return m_sMobile;} string getRelation(){return
m_sRelation;} string getEmail(){return m_sEmail;} string getQQ(){return m_sQQ;}
void setName(string Name0){m_sName = Name0;} void setCompany(string
Company0){m_sCompany = Company0;} void setMobile(strin

Technology