【文件属性】:
文件名称:通讯录管理系统C++
文件大小:63KB
文件格式:TXT
更新时间:2014-01-11 16:09:21
通讯录 管理 系统 C++
以下是部分源码:
#include
#include
#include
#include
#include
using namespace std;
class book
{
public:
book();//默认构造函数
char inter_face();//首页
void add_person();//添加联系人
void del_person();//删除联系人
void show_all();//显示所有联系人
void alter();//修改信息
void select();//查询联系人
void save_new();//保存新增加的联系人
private:
string name;//姓名
string address;//地址
string number;//电话号码
string post;//邮编
string qq;//QQ号
};
book::book()
{
name = "\0";
address = "\0";
number = "\0";
post = "\0";
qq = "\0";
}
//首页
char book::inter_face()
{
system("cls");
cout <>choose;
fflush(stdin);
return choose;
}