欢迎来到天天文库
浏览记录
ID:8808501
大小:256.50 KB
页数:12页
时间:2018-04-08
《程序设计课程设计报告》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、程序设计课程设计报告内容:一、设计任务与要求1.设计任务1)利用动态链表实现电话薄程序2)了解MFC架构,利用VisualC++实现一个简单计算器系统。2.实验要求1)实现电话薄通讯录的建立,查询,删除,插入。2)主要实现计算器数据的加、减、乘、除运算。二、需求分析1.功能需求1)通讯录:查询,删除,插入,显示。2)计算器:基本运算功能:可以进行加、减、乘、除等基本运算。删除功能:删除数值。归零功能:可以在计算完成后清空编辑框中的已有数值。2..运行需求VC++6.0Windows操作系统三、系统设计1.总体方案设计电话薄建立通讯录查询
2、通讯录删除通讯录插入通讯录退出菜单清零等于除法乘法减法加法计算器加法除法乘法等于清零减法2.详细设计1)电话薄主要代码:#includeusingnamespacestd;#definenull0structnotelist{charnum[5];//编号charname[9];//姓名charsex[3];//性别charphone[13];//电话charaddr[31];//地址notelist*next;};intn;boolfind1(notelist*head,charnum[]);notelist*cr
3、eat()//通讯录的建立{chari;notelist*head;notelist*p1,*p2;n=0;p1=p2=newnotelist;p1->next=null;head=null;/*cout<<"请输入通讯录信息的条数:";cin>>i;*//*cin.clear();//清空状态和缓冲区,判断输入正确与否cin.sync();for(intj=1;j<;j++)k=i-j;if(k==0)cout<>i;}*/do{cout<<"请输入第"<4、"条通讯信息:"<>p1->num;while(find1(head,p1->num)){cout<<"-----此编号已存在!请重新输入!-----"<>p1->num;}cout<<"请输入姓名:";cin>>p1->name;cout<<"请输入性别:";cin>>p1->sex;cout<<"请输入电话号码:";cin>>p1->phone;cout<<"请输入地址:";cin>>p1->addr;n=n+1;if(n==1)he5、ad=p1;elsep2->next=p1;p2=p1;p1=newnotelist;p1->next=null;cout<<"是否继续输入通讯录讯息:(是请按y---否请按其它任意键)";cin>>i;}while(i=='y'6、7、i=='Y');p2->next=null;return(head);}boolfind1(notelist*head,charnum[])//查询相同编号{notelist*p1,*p2;if(head==null){return0;}p1=head;while((strcmp(num,p1->num)!8、=0)&&p1->next!=null){p2=p1;p1=p1->next;}if(strcmp(num,p1->num)==0){return1;}elsereturn0;}voidprint(notelist*head)//通讯录信息的输出{notelist*p;cout<num<<""9、<name<<""<sex<<""<phone<<""<addr<next;}while(p!=null);}voidfind(notelist*head,charnum[])//查询{notelist*p1,*p2;if(head==null){cout<<"没记录"<num)!=0)&&p1->next!=null){p2=p1;p1=p1->next;}if(strcmp(num,p1->num)==0)10、{cout<<"编号"<<""<<"姓名"<<""<<"性别"<<""<<"电话"<<""<<"地址"<num<<""<name<<""<sex<<""<
4、"条通讯信息:"<>p1->num;while(find1(head,p1->num)){cout<<"-----此编号已存在!请重新输入!-----"<>p1->num;}cout<<"请输入姓名:";cin>>p1->name;cout<<"请输入性别:";cin>>p1->sex;cout<<"请输入电话号码:";cin>>p1->phone;cout<<"请输入地址:";cin>>p1->addr;n=n+1;if(n==1)he
5、ad=p1;elsep2->next=p1;p2=p1;p1=newnotelist;p1->next=null;cout<<"是否继续输入通讯录讯息:(是请按y---否请按其它任意键)";cin>>i;}while(i=='y'
6、
7、i=='Y');p2->next=null;return(head);}boolfind1(notelist*head,charnum[])//查询相同编号{notelist*p1,*p2;if(head==null){return0;}p1=head;while((strcmp(num,p1->num)!
8、=0)&&p1->next!=null){p2=p1;p1=p1->next;}if(strcmp(num,p1->num)==0){return1;}elsereturn0;}voidprint(notelist*head)//通讯录信息的输出{notelist*p;cout<num<<""
9、<name<<""<sex<<""<phone<<""<addr<next;}while(p!=null);}voidfind(notelist*head,charnum[])//查询{notelist*p1,*p2;if(head==null){cout<<"没记录"<num)!=0)&&p1->next!=null){p2=p1;p1=p1->next;}if(strcmp(num,p1->num)==0)
10、{cout<<"编号"<<""<<"姓名"<<""<<"性别"<<""<<"电话"<<""<<"地址"<num<<""<name<<""<sex<<""<
此文档下载收益归作者所有