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

    2022年面向对象程序设计C山师第七章习题答案 .pdf

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

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

    2022年面向对象程序设计C山师第七章习题答案 .pdf

    1 / 10 第七章习题答案一、选择填空 1、D 2、A 3、B 4、C 5、A 6、C 7、B 8、D 9、二、判断下列描述的正确性,对者划,错者划。 1、 2、 3、 4、 5、 6、 7、 8、 9、 10、 11、 12、 13、 14、 15、 16、 17、 18、三、分析下列程序的输出结果。 1、(1)上述结构的DAG 图如下所示。(2)无二义性(3)无二义性2、( 1)无 (2 无 (3)有 (4)无 (5)有四、分析下列程序的输出结果1、运行该程序输出如下结果。(1,2)5,6 (6,9)2、该程序的输出结果如下所示(1,2) (6,9) 5,6 (6,9) 3、该程序的输出结果如下:(13,22,30,40)4、运行该程序输出结果如下所示。D2:display() pri1=4,pri2=5 pri4=6 pri12=7 D2:display() pri1=12 ,pri2=9 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 1 页,共 10 页2 / 10 pri4=7 pri12=8 5、该程序输出结果如下所示:D2: display() pri1=1,pri2=4 pri4=6 pri12=7 D2:display() pri1=9,pri2=8 pri4=7 pri12=8 6、该程序输出结果如下所示:base class base class base class derive1 class derive2 class 五、按下列要求编写程序。1、程序内容如下所示。#include #include class person int no。 char name10。 public: void input() coutno 。 coutname。 void disp() cout 编号: noendl 。 cout 姓名: nameendl 。 。class student:public person private: char depart6。int degree。 public: 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 2 页,共 10 页3 / 10 void input() person:input() 。 coutdepart 。 coutdegree。 void disp() person:disp()。 cout 班号: departendl 。 cout 成绩: degreeendl 。 。class teacher:public person private: char prof10 。char depart10。 public: void input() person:input() 。 coutprof 。 cout depart 。 void disp() person:disp()。 cout 职称: profendl 。 cout 部门: depart endl 。 。void main() student s1。 teacher t1。 cout 输入一个学生数据:n。 s1.input() 。 cout 输入一个教师数据:n。 t1.input() 。 cout 显示一个学生数据:n。 s1.disp()。 cout 显示一个教师数据:n。 t1.disp() 。 2、程序内容如下所示。#include #include 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 3 页,共 10 页4 / 10 class string int length 。char *contents。 public: int get_length()return length 。 char *get_contents()return contents 。 string()delete contents 。 int set_contents(int in_length,char *in_contents) 。int set_contents(char *in_contents) 。void print()coutcontentsget_length() 。 pt=new_text-get_contents() 。精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 4 页,共 10 页5 / 10 cp=this-get_contents() 。 m=this-get_length() 。 char *news=new charm+n+1 。 for (int i=0 。icursor。i+) newsi=cpi 。 k=i 。 for (int j=0 。jn。i+,j+) newsi=ptj 。 cursor=i。 for(j=k 。jget_length() 。 pt=new_text-get_contents() 。 m=this-get_length() 。 news=new charmn+cursor ? m+1 : n+cursor+1 。 news=this-get_contents() 。 for(int i=cursor,j=0 。in+cursor 。j+,i+) newsi=ptj 。 if (mget_contents() 。 m=this-get_length() 。 for(int i=cursor 。im 。i+) cpi=cpi+how_much。 cpi=0 。 void main() 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 5 页,共 10 页6 / 10 string s1。 edit_string s2。 char *cp。 s1.set_contents(Object_Oriented Programming) 。 cp=s1.get_contents()。 s2.set_contents(cp)。 s2.print() 。 s2.move_cursor(15)。 s1.set_contents(Windwos) 。 s2.add_at_cursor(&s1)。 s2.print() 。 s2.move_cursor(6)。 s2.dele_at_cursor(9)。 s2.print() 。 s1.set_contents( TTT) 。 s2.repl_at_cursor(&s1) 。 s2.print() 。 3、程序内容如下所示。#include class vehicle protected: int wheels。float weight 。 public: vehicle(int wheels,float weight) 。int get_wheels() 。float get_weight() 。float wheel_load() 。void print() 。class car:vehicle int passenger_load。 public: car(int wheels,float weight,int passengers=4) 。int get_passengers()。void print() 。class truck:vehicle int passenger_load。精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 6 页,共 10 页7 / 10 float payload 。 public: truck(int wheels,float weight,int passengers=2,float max_load=240000.00)。int get_passengers()。float efficiency() 。void print() 。vehicle:vehicle(int wheels,float weight) vehicle:wheels=wheels 。 vehicle:weight=weight 。 int vehicle:get_wheels() return wheels。 float vehicle:get_weight() return weight/wheels 。 void vehicle:print() cout 车轮: wheels 个。 endl 。 cout 重量: wheels 公斤。 endl 。 car:car(int wheels,float weight,int passengers):vehicle(wheels,weight) passenger_load=passengers 。 int car:get_passengers() return passenger_load。 void car:print() cout 小车: endl。 vehicle:print() 。 cout 载人: passenger_load人。 endl。 coutendl。 truck:truck(int wheels,float weight,int passengers,float max_load):vehicle(wheels,weight) passenger_load=passengers 。 payload=max_load 。精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 7 页,共 10 页8 / 10 int truck:get_passengers() return passenger_load。 float truck:efficiency() return payload/(payload+weight) 。 void truck:print() cout 卡车 endl 。 vehicle:print() 。 cout 载人: passenger_load人。 endl。 cout 效率: efficiency()endl 。 coutendl。 void main() car car1(4,1000,5)。 truck tru1(10,5000,3,340000) 。 car1.print() 。 tru1.print() 。 4、程序内容如下所示。#include #include class employee protected: int no。char name10。float salary。 public: employee() coutno 。 coutname。 salary=0。 void pay() void display() 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 8 页,共 10 页9 / 10 。class technician:public employee private: float hourlyrate 。int workhours 。 public: technician()hourlyrate=100 。 void pay() coutnameworkhours 。 salary=hourlyrate*workhours 。 void display() cout 兼职技术人员:name (编号为: no ) 本月工资: salaryendl 。 。class salesman:virtual public employee protected: float commrate。float sales。 public: salesman()commrate=0.04 。 void pay() coutnamesales。 salary=sales*commrate。 void display() cout 销售员: name (编号为: no ) 本月工资: salaryendl 。 。class manager:virtual public employee protected: float monthlypay 。 public: manager()monthlypay=8000 。 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 9 页,共 10 页10 / 10 void pay()salary=monthlypay 。 void display() cout 经理: name (编号为: no ) 本月工资: salaryendl 。 。class salesmanager:public manager,public salesman public: salesmanager() monthlypay=5000 。 commrate=0.005。 void pay() coutnamesales。 salary=monthlypay+commrate*sales 。 void display() cout 销售经理: name (编号为: no ) 本月工资: salaryendl 。 。void main() manager m1。 technician t1。 salesman s1 。 salesmanager sm1 。 m1.pay()。 m1.display() 。 t1.pay()。 t1.display() 。 s1.pay()。 s1.display()。 sm1.pay()。 sm1.display()。 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 10 页,共 10 页

    注意事项

    本文(2022年面向对象程序设计C山师第七章习题答案 .pdf)为本站会员(Q****o)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

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




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

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

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

    收起
    展开