欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年实验-类和对象题目归纳 .pdf

    • 资源ID:30551539       资源大小:67.82KB        全文页数:10页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年实验-类和对象题目归纳 .pdf

    实验 5 类和对象程序填空1. 题目描述: 仔细阅读下列求两个点之间距离的程序,程序的输出结果是50,根据程序的输出结果在划线处填入正确语句。代码:#include #include using namespace std; class point public: point(float a,float b) x=a; y=b; float Distance(point &p) float dx=p.x-x; float dy=p.y-y; return (float)sqrt(dx*dx+dy*dy); private: float x,y; ; int main() point p1(2,3),p2(32,43); coutp1.Distance(p2)endl; return 0; 2.题目描述: 设计一个矩阵类CRectangle ,该类中的私有成员变量存放Rectangle的长和宽,并设置它们的默认值为1,通过成员函数set ()来设定长和宽的值,并确保长宽都在(0,50 )范围之内, 求其周长Perimeter并显示输出。 以下是完成此项工作的程序,请将未完成的部分填入,使之完整。代码:#include using namespace std; class CRectangle public: void Set(float a,float b) if(a0)&(a0)&(b50) width=b; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 10 页 - - - - - - - - - else width=1; float perimeter() return 2*(length+width); private: float length; float width; ; int main() CRectangle R; float l,w;/定义矩形的长和宽做为输入变量; / cout请输入矩形的长和宽:lw; R.Set(1,w); /设置矩形的长和宽 cout矩形的周长为:R.perimeter()endl; return 0; 3.题目描述: 设计一个类CRectangle,要求如下所述。(1)定义两个点坐标x1,y1,x2,y2 ,两点所确定的一条直线构成了矩形的对角线。(2)初始化矩形的两个点时,判断给定的两个点是否能够构成一个矩形,如果不能构成矩形,则矩形对角线的两点初始化为(0,0)和(1,1 ) 。如果可以构成,则用形参初始化对象的数据成员。根据以上描述完成下列程序。代码:#include #include using namespace std; class CRectangle public: CRectangle(float Rx1=0,float Ry1=0, float Rx2=1,float Ry2=1); bool IsSquare( ); void PrintRectangle( ); private: /确定直线的两点的坐标 float x1,y1,x2,y2; ; CRectangle:CRectangle(float Rx1 ,float Ry1, float Rx2,float Ry2) if (Rx1=Rx2|Ry1=Ry2) /两点的横坐标或纵坐标的值相等,则不能构成矩形 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 10 页 - - - - - - - - - x1=y1=0; x2=y2=1; cout不能构成矩形 ! endl; else x1=Rx1,x2=Rx2,y1=Ry1,y2=Ry2 /初始化数据成员x1,y1,x2,y2 cout可以构成矩形 ! endl; int main() CRectangle R1(1,3,5,6); CRectangle R2(1,3,1,6); return 0; 4.题目描述: 下列程序中声明了类girl,其中函数“ display”是类 girl的友元函数,请在( 1)、( 2)和( 3)处各填入正确的内容,使程序能正常运行。代码:#include using namespace std; class girl private: char name; int age; public: girl(char n, int d) /构造函数 name= n; age=d; Friend void display(girl &x); /声明友元函数; void display(girl &x) /类外定义友元函数 coutGirls name is :x. name, age is :x.ageendl; /girl类的友元函数能访问girl类对象的私有成员 int main( ) girl e(z,18); display(e); /调用友元函数 return 0; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 10 页 - - - - - - - - - 5.题目描述: ,请完善下面程序,使程序的运行结果如下:This is a constructor ! This is a constructor ! The value of ch is a The value of ch is b This is a destructor of b This is a destructor of a 代码:#include using namespace std; class MyClass char ch; public: MyClass( ) coutThis is a constructor! endl; ch=a; MyClass(char character ) coutThis is a constructor! endl; ch=character; void Print( ) coutThe value of ch is chendl; MyClass( ) coutThis is a destructor ofchendl; ; int main( ) MyClass first, second(b); first.Print( ); second.Print( ); return 0; 程序设计6.题目标题: 计算两点间的距离题目描述: 仿照本次实验预习的程序填空题1, 将以上 Distance 函数定义为类 piont 的友元函名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 10 页 - - - - - - - - - 数,实现程序的功能。并在主函数中增加输入两点作为友元函数的实参。其主函数如下:输入描述: 输入四个数,用空格隔开。输出描述: 两个点的距离。样例输入: 1 3 5 6样例输出: 5 #include #include using namespace std; class point public: point(float a,float b) x=a; y=b; friend float Distance( point &p1, point &p2); private: float x,y; ; float Distance( point &p1, point &p2) float dx=p1.x-p2.x; float dy=p1.y-p2.y; return (float)sqrt(dx*dx+dy*dy); int main() float p1_x,p1_y,p2_x,p2_y; /输入四个点 cinp1_xp1_yp2_xp2_y; point p1(p1_x,p1_y),p2(p2_x,p2_y); coutDistance(p1,p2)endl; return 0; 7. 题目标题: 日期类 CDateInfo 的设计。题目描述: 根据以下主函数的功能来设计日期类CDateInfo ,使其能正确运行。类 CDateInfo中应该具有描述年、月、日的三个数据成员和相应的成员函数。#include using namespace std; class CDateibfo int day,month,year; public: CDateibfo(); CDateibfo(int yy,int mm,int dd); void setdate(int yy,int mm,int dd); void getdate(); ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 10 页 - - - - - - - - - CDateibfo:CDateibfo() day=10; month=10; year=2011; CDateibfo:CDateibfo(int yy,int mm,int dd) year=yy; month=mm; day=dd; void CDateibfo:setdate(int yy,int mm,int dd) year=yy; month=mm; day=dd; void CDateibfo:getdate() coutyear-month-dayymd; date1.setdate(y,m,d); date1.getdate(); date2.getdate(); return 0; 输入描述:三个整数,分别用来设置对象data1 的年、月、日输出描述: 两行:第 1 行为对象 data1 的年月日;第2 行为 data2 的年月日。样例输入:2011 12 5样例输出:2012-12-5 2011-10-10 8. 题目标题: 学生类 Student 的设计题目描述: 根据以下主函数的功能来设计日期类Student,使其能正确运行。类Student 中应该具有描述学生姓名、性别、年龄的三个数据成员和相应的成员函数。输入描述: 3 行,第一行为一个长度不超过10 的字符串表示姓名;第二行为0 和 1 中的一个整数;第三行为一个整数,表示年龄。输出描述:按主函数要求输出。#include #include using namespace std; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 10 页 - - - - - - - - - class Student private: char name20; int sex; unsigned old; public: void SetName(char *chOne); void SetGender(int isex); void SetAge(unsigned iold); void GetName(); void GetGender(); void GetAge(); ; void Student:SetName(char *chOne) strcpy(name,chOne); void Student:SetGender(int isex) sex=isex; void Student:SetAge(unsigned iold) old=iold; void Student:GetName() coutZhang_Sans name is nameendl; void Student:GetGender() coutZhang_Sans gender is sexendl; void Student:GetAge() coutZhang_Sans age is oldchOne; ciniSex; ciniOld; Zhang_San.SetName(chOne); Zhang_San.SetGender(iSex); Zhang_San.SetAge(iOld); coutendl; Zhang_San.GetName(); Zhang_San.GetGender(); Zhang_San.GetAge(); return 0; 样例输入:ZhangSan 0 20 样例输出:Zhang_Sans name is ZhangSan Zhang_Sans gender is 0 Zhang_Sans age is 20 9. 题目标题: 计算器类Calculator 的设计题目描述: 根据以下主函数的功能来设计计算器类Calculator, 使其能正确运行。 类 Calculator中应该具有描述运算数的a和 b 及其表示 a和 b 运算结果的三个数据成员和相应计算并显示结果的成员函数。#include using namespace std; class Calculator float x,y; public: Calculator(int a,int b) x=a; y=b; ; void add() coutx+y=x+yendl; ; void subtract() coutx-y=x-yendl; ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 8 页,共 10 页 - - - - - - - - - void multiply() coutx*y=x*yendl; void divide() coutx/y=x/yab; Calculator cal(a,b); cal.add(); cal.subtract(); cal.multiply(); cal.divide(); return 0; 输入描述: 2 个整数 a 和 b,表示参与运算的两个数据。输出描述: 4 行,分别显示a+b、a-b 、a*b 和 a/b 的结果样例输入:1 2 样例输出:1+2=3 1-2=-1 1*2=2 1/2=0.5 10.题目标题: 复数类 Imaginary 的设计题目描述: 根据以下主函数的功能来设计复数类Imaginary , 使其能正确运行。 类 Imaginary中应该具有描述复数的实部和虚部的私有数据成员a 和 b,还有相应的构造函数和按照“abi ”格式显示复数的成员函数print()。设计类 Imaginary的 2 个友元函数分别进行复数的加、减运算,并在这些函数调用类Imaginary的成员函数print()显示结果。#include #include using namespace std; class Imaginary float x,y; public: Imaginary(int a,int b) x=a; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 9 页,共 10 页 - - - - - - - - - y=b; ; friend void Add(Imaginary &p,Imaginary &b); friend void Sub(Imaginary &p,Imaginary &q); ; void Add(Imaginary &p,Imaginary &q) coutp.x+q.x+p.y+q.yiendl; void Sub(Imaginary &p,Imaginary &q) coutp.x-q.x-abs(p.y-q.y)ix1y1x2y2; Imaginary imag1(x1,y1),imag2(x2,y2); Add(imag1,imag2); Sub(imag1,imag2); return 0; 输入描述: 输入 4 个数据,分别表示进行运算的两个复数的实部和虚部输出描述: 4 行,分别显示两个复数进行加、减、乘、除运算的结果样例输入:1 3 2 5 样例输出:3+8i -1-2i 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 10 页,共 10 页 - - - - - - - - -

    注意事项

    本文(2022年实验-类和对象题目归纳 .pdf)为本站会员(Che****ry)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开