2023年面向对象程序设计C++实验指导书.doc
《2023年面向对象程序设计C++实验指导书.doc》由会员分享,可在线阅读,更多相关《2023年面向对象程序设计C++实验指导书.doc(34页珍藏版)》请在咨信网上搜索。
1、面向对象程序设计(C+)课程实验指导书安阳工学院计算机科学与信息工程学院软件工程教研室2023.9编 号:课程总学时: 64 实验学时: 32课程总学分: 3.5 实验学分:先修课程:C语言程序设计合用专业:计算机科学与技术,网络工程,软件工程一、 本课程实验的重要目的与任务 面向对象程序设计(C+)是计算机专业学生的一门专业基础课。C+是一种高效而又实用的程序设计语言,它既可以进行过程化程序设计,也可以进行面向对象程序设计,因此成为了编程人员最广泛使用的工具。重要任务是介绍C+语言中的数据类型,运算,语句结构及其程序设计的基本方法。使学生掌握一门高级程序设计语言,了解面向对象程序设计的基本概
2、念与方法,进而学会运用C+语言学会解决一般应用问题,从而掌握面向对象程序设计的基本知识和基本技能。并为后续的专业课程奠定程序设计基础。 实验1 C+基础一、实验目的1.加强学生掌握C+的基本知识点;2.加强学生掌握I/O流;3 加强学生进一步理解函数的用法;4 理解引用的概念及应用。三、实验内容1.用函数返回值实现记录A类学生和B类学生个数,平均分大于等于80的为A类,其余为B类。四. 实验指导1.参考程序:#includeint main() cout”My name is Jonen”; cout”the ID is”; cout2; coutendl;2.参考程序:#include #i
3、nclude /要用到格式控制符void main() double amount = 22.0/7; cout amount endl; cout setprecision(0) amount endl setprecision(1) amount endl setprecision(2) amount endl setprecision(3) amount endl setprecision(4) amount endl; cout setiosflags(ios:fixed); cout setprecision(8) amount endl; cout setiosflags(ios:
4、scientific) amount endl; cout setprecision(6); /重新设立成原默认设立3.参考程序:#include #include int main() int number=1001; cout Decimal: dec number endl Hexadecimal: hex number endl Octal: oct number endl;return 0;4.参考程序:#include #include int main() cout setfill(*) setw(2) 21 endl setw(3) 21 endl setw(4) 21 end
5、l; cout setfill( ); / 恢复默认设立return 0;5.参考程序:#include #include void main()cout setiosflags(ios:right)setw(5) 1setw(5) 2setw(5) 3 endl;cout setiosflags(ios:left)setw(5) 1setw(5) 2setw(5) 3 endl;6.参考程序:#include void main()const float PI=3.1415926f;float r;float z,s;coutr;z=2*PI*r;s=PI*r*r;cout圆的周长为: ze
6、ndl;cout圆的面积为: sendl;7.参考程序:#include using namespace std; int array64=60,80,90,75, 75,85,65,77, 80,88,90,98, 89,100,78,81, 62,68,69,75, 85,85,77,91;int& level(int grade, int size, int& tA, int& tB);int main() int typeA=0,typeB=0; int student=6; int gradesize=4; for(int i=0; istudent; i+) /解决所有的学生 le
7、vel(arrayi, gradesize, typeA, typeB)+; /函数调用作为左值 cout number of type A is typeA endl; cout number of type B is typeB endl; /system(PAUSE); return 0;int& level(int grade, int size,int& tA, int& tB) int sum=0; for(int i=0; i=80) return tA; /type A student else return tB; /type B student运营结果:实验2 类和对象1、
8、实验目的:掌握类的定义,根据具体需求设计类;进一步理解C+中类的封装性;会根据类创建各种对象;掌握对象的各种成员的使用方法。2、实验内容定义一个满足如下规定的Date类。(1)用下面的格式输出日期:日/月/年;(2)可运营在日前上加一天操作;(3)设立日期。参考代码:#include class Datepublic: void Display(); void AddOneDay(); void SetDay(int y,int m,int d);protected: bool Legal(int y, int m, int d); bool IsLeapYear(int y); int ye
9、ar; int month; int day;void Date:Display() cout day / month / year 9999|y1|d1|m12) return false; int dayLimit=31; switch(m) case 4: case 6: case 9: case 11: dayLimit-; if(m=2) dayLimit = IsLeapYear(y) ? 29 : 28; return (ddayLimit)? false : true;bool Date:IsLeapYear(int y) return !(y%4)&(y%100)|!(y%4
10、00);int main() Date d; d.SetDay(2023,2,28); d.Display(); d.AddOneDay(); d.Display(); system(PAUSE); 运营结果:实验3 继承与派生1、实验目的:理解继承的概念,学习如何使用基类成员,了解基类成员在派生类中的访问控制;理解类的派生对代码复用的作用。2、实验内容:设计一个人员类person和一个日期类date,由人员类派生出学生类Student和教师类professor,学生类和教师类的数据成员birthday为日期类。参考代码:#include #include using namespace st
11、d;class date public: date() coutyearmonthday; void display() coutyear-month-day; private: int year; int month; int day;class person protected: char *name; public: person();person:person() char namestr50; coutnamestr; name = new charstrlen(namestr)+1; strcpy(name,namestr);class student:public person
12、private: int ID; int score; date birthday; public: student() coutID; coutscore; void display() coutThe basic information:endl; coutIDtnametscoret; birthday.display(); coutendl; ;class professor:public person public: professor() coutNo; coutmajor; void display() coutThe basic information:endl; couttN
13、otnametmajort; birthday.display(); coutendl; private: int No; char major10; date birthday; ;int main() student stu; stu.display(); professor prof; prof.display(); system(PAUSE); return 0;运营结果:实验4多态1、实验目的:掌握函数的概念及应用方法;理解多态性的运用和作用。2、实验内容:新建一个基类shape类是一个表达形状的抽象类,area( )为求图形面积的函数。请从shape类派出矩形类(rectangle
14、)、三角形类(triangle)、圆类(circles)、并给出具体的求面积函数。参考代码:#include#includeusing namespace std;class shape public: virtual double area()=0; virtual void display() = 0; shape();class rectangle:public shape public: rectangle(double a =1,double b=1) x = a; y = b; double area() return x*y; void display() coutarea()e
15、ndl; private: double x; double y; ;class triangle:public shape public: triangle(double a =1,double b =1,double c=1) x = a; y = b; z= c; double area() double l = (x+y+z)/2; return (sqrt(l-x)*(l-y)*(l-z)*l); void display() coutarea()endl; private: double x; double y; double z;class circles:public shap
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2023 面向 对象 程序设计 C+ 实验 指导书
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【二***】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【二***】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。