版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、精选优质文档-倾情为你奉上综 合 程 序 设 计(房屋中介管理系统)编辑小组成员:龚向文、周大量、郑传周 (输配电1班)2012-09-13各人负责项目:龚向文:顾客信息(Customer),房屋信息(House)郑传周:登录方式(Logo)周大量:统计资料(sta)王星峰:主函数(main)1*第一部分:-请选择操作: 1、 用户登录2、 用户注册选择2,用户注册。输入你的姓名: 输入密码<有效位数8-16> 若密码不足8位或超出16位则:密码无效,请重新输入。注册完毕,选择1登录。输入用户名、密码。第二部分:登录成功,进入主菜单。 <主菜单>请选择操作类型:1、 表
2、示房屋/客户信息查询2、 表示房屋/顾客信息进行增删改3、 表示进行相关信息统计第三部分:主菜单:<表示房屋/客户信息查询>选择1,进入信息查询系统输入查询的方面:1、 表示房屋2、 表示顾客选择1:输入你要查询的物业名称: 选择2:输入你要查询的客户名称: 主菜单:<表示房屋/顾客信息进行增删改>选择2选择操作:1、 表示对房屋操作2、 表示对顾客操作选择1输入操作类型:1、 表示信息增加2、 表示修改信息3、 表示删除信息选择1输入物业名称: 输入房屋地段: 输入房屋户型: 输入房屋朝向: 输入房屋设施: 输入房屋面积: 输入房屋价格: 完毕!在此的基础上,输入操作
3、类型,选择2表示修改信息。选择2:输入你需要更新的物业名字: 在此的基础上,输入操作类型,选择3表示删除信息。选择3:输入你需要删除的物业名字: 完毕!在选择操作,选择2表示对顾客操作。选择2:输入操作类型:1、 表示信息增加2、 表示修改信息3、 表示删除信息 在输入操作类型中:选择1表示信息增加。选择1输入客户名称: 输入客户联系方式: 在输入操作类型中:选择2表示修改信息。选择2输入你需要更新的客户名字即: 在输入操作类型中:选择3表示删除信息。选择3 输入你要删除的客户名称: 完毕!主菜单: <表示进行相关信息统计>选择操作:1、 表示对房屋总数的统计2、 表示对顾客总数的
4、统计选择1,表示对房屋总数的统计。选择2,表示对顾客总数的统计完毕!程序代码,及其文字说明:/(1)登录管理模块:主要实现登录身份的管理、密码管理#include <iostream>#include <fstream>#include <string>#include <iomanip>using namespace std;class Logoprivate:string name;string password;public:int in();/接受用户登录请求,决定是否允许登入void reg(); /用户注册void print();/
5、用户登录界面提示;int Logo:in()string n,p;int i=0,j=0;/j值表示是否存在此用户cout<<"输入姓名"<<endl;cin>>n;cout<<"输入密码"<<endl;cin>>p;ifstream input;input.open ("logoinfo.txt");while(!input.eof ()input>>name>>password;if(name=n&&p=password
6、)i=1;if(n=name)j=1;input.close ();if(j=0)cout<<"用户不存在,请先注册!"<<endl;return i;/i值为1表示登录成功;为0时表示登录失败void Logo:reg ()/ ofstream output;output.open ("logoinfo.txt",ios:out|ios:app);cout<<"输入你的姓名:"<<endl;cin>>name;cout<<"输入密码(有效位数8-16)
7、"<<endl;cin>>password;while(password.size ()<8|password.size ()>16)cout<<"密码无效,请重新输入"<<endl;cin>>password;output<<name<<' '<<password<<endl;output.close ();cout<<"注册成功"<<endl;void Logo:print ()co
8、ut<<setw(40)<<"欢迎使用房屋中介管理系统"<<endl;cout<<"请选择操作:"<<endl;cout<<"ttt1、用户登录"<<endl;cout<<"ttt2、用户注册"<<endl;/(2)房屋信息管理模块:房屋信息的增、删、改、查。/类House,name(物业名称),place(地段),type(户型),direction(朝向),area(面积),equip(房屋设施),pri
9、ce(价格),/使用文件“houseinfo.txt”,"hsize.txt"class Houseprivate:string name,place,type,direction,equip;float area,price;public: string getname1()returnHouse:name;unsigned long hsize;void add();/增加一条房屋信息void del();/删除一条房屋信息void alter();/修改一条房屋记录void select(); /查找房屋信息void set(string n,string p,str
10、ing t,string d,string e,float a,float pr)name=n;place=p;type=t; direction=d; equip=e;area=a;price=pr;void print()fstream inout;inout.open("houseinfo.txt",ios:out|ios:app);inout<<name<<' '<<place<<' '<<type<<' '<<direction<
11、;<' '<<equip<<' '<<area<<' '<<price<<endl;inout.close();void House:add ()/仅特殊用户能增加操作fstream isize;isize.open ("hsize.txt",ios:in);isize>>hsize;isize.close();/对文件hsize.txt操作,读出房屋的信息条数;fstream inout;inout.open ("housei
12、nfo.txt",ios:out|ios:app);cout<<"输入物业名称:"<<endl;cin>>name;cout<<"输入房屋地段:"<<endl;cin>>place;cout<<"输入房屋户型:"<<endl;cin>>type;cout<<"输入房屋朝向:"<<endl;cin>>direction;cout<<"输入房屋设
13、施:"<<endl;cin>>equip;cout<<"输入房屋面积:"<<endl;cin>>area;cout<<"输入房屋价格:"<<endl;cin>>price;inout<<name<<' '<<place<<' '<<type<<' '<<direction<<' '<&l
14、t;equip<<' '<<area<<' '<<price<<endl;inout.close ();hsize+;fstream osize;osize.open ("hsize.txt",ios:out);osize<<hsize;osize.close ();/对文件hsize.txt操作,写入新的房屋的信息条数cout<<"房屋信息更新完成。"<<endl;void House:del()string isname;f
15、stream isize;isize.open ("hsize.txt",ios:in);isize>>hsize;isize.close();/对文件hsize.txt操作,读出房屋的信息条数;cout<<"输入你需要删除的物业名字:"<<endl;cin>>isname;House *a=new Househsize;int i=0,flag=0;ifstream input;input.open ("houseinfo.txt",ios:in);while(!input.eof (
16、)input>>name>>place>>type>>direction>>equip>>area>>price;if(name=isname)flag+;/flag记录要删除房屋的个数continue;elseai.set (name,place,type,direction,equip,area,price);i+;input.close();ofstream output;output.open("houseinfo.txt",ios:out);for(i=0;i<hsize-f
17、lag;i+)ai.print();output.close();fstream osize;osize.open ("hsize.txt",ios:out);osize<<hsize-flag;osize.close ();void House:alter()cout<<"输入你需要更新的物业名字即"<<endl;House:del();cout<<"输入更新后房屋信息"<<endl;House:add ();void House:select()string hname;
18、fstream inout;cout<<"输入你要查询的物业名称"<<endl;cin>>hname;inout.open ("houseinfo.txt",ios:in);while(!inout.eof ()inout>>name>>place>>type>>direction>>equip>>area>>price;if(name=hname)cout<<"物业名称"<<name<
19、<endl; cout<<"房屋地段"<<place<<endl; cout<<"房屋户型"<<type<<endl; cout<<"房屋朝向"<<direction<<endl; cout<<"房屋设施"<<equip<<endl; cout<<"房屋面积"<<area<<endl; cout<<&
20、quot;房屋价格"<<price<<endl;else continue;inout.close ();/(3)顾客管理模块,顾客信息的增、删、改、查。/类Customer cname(顾客姓名),tel(联系方式),/使用文件“coustomerinfo.txt”,"csize.txt"class Customerprivate:string cname,tel;public: string getname2()returnCustomer:cname;unsigned long csize;void add();/增加一条客户信息vo
21、id del();/删除一条客户信息void alter();/修改一条客户记录void select(); /查找客户信息 void set(string cn,string te)cname=cn;tel=te;void print()fstream inout;inout.open("customerinfo.txt",ios:out|ios:app);inout<<cname<<' '<<tel<<endl;inout.close();void Customer:add ()/仅特殊用户能增加操作fst
22、ream isize;isize.open ("csize.txt",ios:in);isize>>csize;isize.close();/对文件csize.txt操作,读出客户的信息条数;fstream inout;inout.open ("customerinfo.txt",ios:out|ios:app);cout<<"输入客户名称:"<<endl;cin>>cname;cout<<"输入客户联系方式:"<<endl;cin>&g
23、t;tel; inout<<cname<<' '<<tel<<endl;inout.close ();csize+;fstream osize;osize.open ("csize.txt",ios:out);osize<<csize;osize.close ();/对文件csize.txt操作,写入新的客户的信息条数cout<<"客户信息更新完成。"<<endl;void Customer:del()string isname;fstream isize
24、;isize.open ("csize.txt",ios:in);isize>>csize;isize.close();/对文件csize.txt操作,读出客户的信息条数;cout<<"输入你需要删除的客户名字:"<<endl;cin>>isname; Customer *b=new Customercsize;int i=0,flag=0;ifstream input;input.open ("customerinfo.txt",ios:in);while(!input.eof ()i
25、nput>>cname>>tel;if(cname=isname)flag+;/flag记录要删除客户的个数continue;elsebi.set (cname,tel);i+;input.close();ofstream output;output.open("customerinfo.txt",ios:out);for(i=0;i<csize-flag;i+)bi.print();output.close();fstream osize;osize.open ("csize.txt",ios:out);osize<
26、<csize-flag;osize.close ();void Customer:alter()cout<<"输入你需要更新的客户名字即"<<endl;Customer:del();cout<<"输入更新后客户信息"<<endl;Customer:add ();void Customer:select()string find;fstream inout;cout<<"输入你要查询的客户名称"<<endl;cin>>find;inout.open
27、 ("customerinfo.txt",ios:in);while(!inout.eof ()inout>>cname>>tel;if(cname=find)cout<<"客户姓名"<<cname<<endl; cout<<"客户联系方式"<<tel<<endl; else continue;inout.close ();/(4)统计模块sta类,size统计数class staprivate: int size;public: void
28、 hsum() /统计房屋总数 fstream input; input.open ("houseinfo.txt",ios:in); input>>size; input.close (); cout<<"房屋总数为:"<<size<<endl; void csum()/统计顾客总数 fstream input; input.open ("customer.txt",ios:in); input>>size; input.close (); cout<<&quo
29、t;顾客的总数为:"<<size<<endl; ;int main()Logo customer;int i,flag1,flag2,flag3,flag4,flag5,flag6,flag7;customer.print ();/登录管理提示cin>>flag1;if(flag1=1)flag2=customer.in ();/用户登录while(flag2=0)cout<<"ttt您登录失败。"<<endl;cout<<"ttt3退出系统"<<endl;co
30、ut<<"ttt其他数字重新登录"<<endl;cout<<"ttt请选择:"<<endl;cin>>i;if(i=3)return 0;flag2=customer.in ();else if(flag1=2)customer.reg ();/新用户注册cout<<"你将退出系统,如需其他操作请重新登录系统"<<endl;return 0;else cout<<"输入有误"<<endl;return 0;s
31、ystem("cls");cout<<"恭喜您登录成功!"<<endl;cout<<setw(40)<<"(主菜单)请选择操作类型:"<<endl;cout<<"ttt1表示房屋/客户信息查询;"<<endl;cout<<"ttt2表示房屋/顾客信息进行增删改;"<<endl;cout<<"ttt3表示进行相关信息统计"<<endl;cin>
32、;>flag3;switch(flag3)case 1:system("cls");cout<<"欢迎进入信息查询系统"<<endl;cout<<setw(40)<<"输入查询的方面:"<<endl;cout<<"ttt1表示房屋"<<endl;cout<<"ttt2表示顾客"<<endl;cin>>flag4;if(flag4=1)House H;H.select ();else if(flag4=2)Customer C;C.select ();else cout<<"输入错误!"<<endl;break;case 2:
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年航空公司飞机采购与维护服务合同
- 加油站零星维修协议书(2篇)
- 2024年短期借款担保人合同
- 2024版全新落户员工服务期协议下载
- 2024招投标项目法律支持与合规性审核合同3篇
- 2024年融资租赁增信担保合同格式版B版
- 2025年度城市排水工程合同保修与环境保护措施2篇
- 2025年曲靖市普洱学院招考工作人员高频重点提升(共500题)附带答案详解
- 2025年新疆喀什地区招聘事业单位工作人员199人历年高频重点提升(共500题)附带答案详解
- 2025年文山州审计局下属事业单位计算机技术中心选调历年高频重点提升(共500题)附带答案详解
- 通力电梯KCE电气系统学习指南
- 风电场岗位任职资格考试题库大全-下(填空题2-2)
- 九年级数学特长生选拔考试试题
- 幼儿园交通安全宣传课件PPT
- 门窗施工组织设计与方案
- 健身健美(课堂PPT)
- (完整版)财务管理学课后习题答案-人大版
- 锚索试验总结(共11页)
- 移动脚手架安全交底
- 人教版“课标”教材《统计与概率》教学内容、具体目标和要求
- 矩形钢板水箱的设计与计算
评论
0/150
提交评论