- 1、本文档共23页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C面向对象程序设计_三角形的种类与面积
湖南人文科技学院计算机系
课程设计说明书
课 程 名 称: C++面向对象程序设计 课 程 代 号: 436103 题 目: 三角形的种类与面积 年级/专业/班: 2010级软件工程专业一班 学 生 姓 名: 学 号: 指 导 教 师: 开 题 时 间: 2011 年 6 月 13 日 完 成 时 间: 2011 年 6 月 24 日
目 录
摘 要 3
一、引 言 3
二、设计目的与任务 3
三、设计方案 2
1、总体设计 2
2、详细设计 4
3、程序清单 7
4、程序调试与体会 12
5、运行结果 13
四、结 论 16
五、致 谢 16
六、参考文献 17
摘 要
C++是C语言的超集,它不仅保持了与C语言的兼容,而且还支持面向对象程序设计的特征,C++程序在可重用性、可扩充性、可维护性和可靠性等方面都较C语言得到了提高,使其更适合开发大中型的系统软件和应用程序。本文论述了使用VC6.0设计了判断三角形的种类和计算基面积的系统。首先使用C++中的类设计了Point类、Line派生类和Triangle多级派生类;然后再编写intput()、al_line()、jud_tri()以及alg_tri()函数,它们的功能分别是输入数据、计算边长、判断种类以及计算和输出面积;最后在主程序中调用intput()、al_line()、jud_tri()以及alg_tri()函数实现整个程序的运行。经过多次调试,结果成功通过编译并得出了正确的结果,使我的系统可以正常实现菜单选择、输入数据、进行判断和计算并输入结果等功能。
关键词:VC6.0;派生类;多级派生类;
Abstract
C + + is C language of super set, it not only keeps up with the C language compatible, but also do it support object-oriented program design,which is the characteristics of the C + + program in the reusability, scalability, and reliability, maintainability.And in such aspects ,C++ have improved, it become more suitable for the development of large and medium-sized system software and application. This paper discusses the problem that useing the VC6.0 to design a system to judge the types of triangle and calculation the area of it.At first,we use the class of C++ to design a class Point,a derived class Line and a multilevel derived class Triangle.Then we write the fuctions intput(),al_line(),jud_tri() and alg_tri().Their functions are data inputting, length calculation,types judgement and area outputting.Finally,the host program can realize the whole operation by calling the functions intput(),al_line(),jud_tri() and alg_tri().Conclusively,we have past the compiling and get a right result after debugging many times.And then we have knowm our system can realize the functions are menu selection,data inputting,judgement and result outputting.
Key words:VC6.0; Derived class; Mul
文档评论(0)