欢迎来到天天文库
浏览记录
ID:38719028
大小:72.00 KB
页数:8页
时间:2019-06-18
《类和对象(一)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、《c++程序设计》实验报告(实验名称:类和对象(一))专业信息与计算科学班级1班学号 201510802002学生姓名黄杰指导老师何全庆攀枝花数计学院2016年3月29日一、实验目的(1)掌握声明类的方法,类和类的成员的概念以及定义对象的方法。(2)初步掌握用类和对象编制基于对象的程序。(3)学习检查和调试基于对象的程序。二、实验内容:一、有以下程序:#includeusingnamespacestd;classTime{public:inthour;intminute;intsec;};intmain(){Timet1;cin>>t1.ho
2、ur;cin>>t1.minute;cin>>t1.sec;cout<3、sStudent{public:voiddisplay();private:intnum;charname[20];charsex;};2.包含成员函数定义的源文件student.ccp。//student.cpp在此文件中进行函数的定义#include"student.h"//在此文件中进行函数的定义#includeusingnamespacestd;//不要漏写此行voidStudent::display(){cout<<"num:"<4、ex<usingnamespacestd;#include"student.h"intmain(){Studentstud;stud.display();return0;}请完善该程序,在类中增加一个对数据成员赋初值的成员函数set-value。上机调试并运行。(第2章习题4)(作业)三、需要求3个长方柱的体积,请编一个基于对象的程序。数据成员包括length(长)width(宽)height(5、高)要求用成员函数实现以下功能:1.由键盘分别输入3个长方柱的长宽高;2.计算长方柱的体积;3.输出长方柱的体积。请编程序,上机调试并运行。(第2章习题6)三、实验环境Pc机一套,MicrosoftVisualC++四、程序源码与运行结果一,1.将数据成员改为私有的2,将输入和输出的功能改为由成员函数实现3,在类体内定义成员函数。#includeusingnamespacestd;classTime{public:voidinput();voidoutput();private:inthour;intminute;intsec;};voidT6、ime::input(){cin>>hour>>minute>>sec;}voidTime::output(){cout<7、。//student.cpp在此文件中进行函数的定义#include"student.h"//在此文件中进行函数的定义#includeusingnamespacestd;//不要漏写此行voidStudent::display(){cout<<"num:"<>num>>name>>sex;}3,包含主函数的源文件main.cpp//main.cpp主函数模块#in8、clude
3、sStudent{public:voiddisplay();private:intnum;charname[20];charsex;};2.包含成员函数定义的源文件student.ccp。//student.cpp在此文件中进行函数的定义#include"student.h"//在此文件中进行函数的定义#includeusingnamespacestd;//不要漏写此行voidStudent::display(){cout<<"num:"<4、ex<usingnamespacestd;#include"student.h"intmain(){Studentstud;stud.display();return0;}请完善该程序,在类中增加一个对数据成员赋初值的成员函数set-value。上机调试并运行。(第2章习题4)(作业)三、需要求3个长方柱的体积,请编一个基于对象的程序。数据成员包括length(长)width(宽)height(5、高)要求用成员函数实现以下功能:1.由键盘分别输入3个长方柱的长宽高;2.计算长方柱的体积;3.输出长方柱的体积。请编程序,上机调试并运行。(第2章习题6)三、实验环境Pc机一套,MicrosoftVisualC++四、程序源码与运行结果一,1.将数据成员改为私有的2,将输入和输出的功能改为由成员函数实现3,在类体内定义成员函数。#includeusingnamespacestd;classTime{public:voidinput();voidoutput();private:inthour;intminute;intsec;};voidT6、ime::input(){cin>>hour>>minute>>sec;}voidTime::output(){cout<7、。//student.cpp在此文件中进行函数的定义#include"student.h"//在此文件中进行函数的定义#includeusingnamespacestd;//不要漏写此行voidStudent::display(){cout<<"num:"<>num>>name>>sex;}3,包含主函数的源文件main.cpp//main.cpp主函数模块#in8、clude
4、ex<usingnamespacestd;#include"student.h"intmain(){Studentstud;stud.display();return0;}请完善该程序,在类中增加一个对数据成员赋初值的成员函数set-value。上机调试并运行。(第2章习题4)(作业)三、需要求3个长方柱的体积,请编一个基于对象的程序。数据成员包括length(长)width(宽)height(
5、高)要求用成员函数实现以下功能:1.由键盘分别输入3个长方柱的长宽高;2.计算长方柱的体积;3.输出长方柱的体积。请编程序,上机调试并运行。(第2章习题6)三、实验环境Pc机一套,MicrosoftVisualC++四、程序源码与运行结果一,1.将数据成员改为私有的2,将输入和输出的功能改为由成员函数实现3,在类体内定义成员函数。#includeusingnamespacestd;classTime{public:voidinput();voidoutput();private:inthour;intminute;intsec;};voidT
6、ime::input(){cin>>hour>>minute>>sec;}voidTime::output(){cout<7、。//student.cpp在此文件中进行函数的定义#include"student.h"//在此文件中进行函数的定义#includeusingnamespacestd;//不要漏写此行voidStudent::display(){cout<<"num:"<>num>>name>>sex;}3,包含主函数的源文件main.cpp//main.cpp主函数模块#in8、clude
7、。//student.cpp在此文件中进行函数的定义#include"student.h"//在此文件中进行函数的定义#includeusingnamespacestd;//不要漏写此行voidStudent::display(){cout<<"num:"<>num>>name>>sex;}3,包含主函数的源文件main.cpp//main.cpp主函数模块#in
8、clude
此文档下载收益归作者所有