【计算机类职业资格】国家二级C++机试(操作题)模拟试卷329及答案解析.doc

上传人:proposalcash356 文档编号:1331827 上传时间:2019-10-17 格式:DOC 页数:4 大小:42KB
下载 相关 举报
【计算机类职业资格】国家二级C++机试(操作题)模拟试卷329及答案解析.doc_第1页
第1页 / 共4页
【计算机类职业资格】国家二级C++机试(操作题)模拟试卷329及答案解析.doc_第2页
第2页 / 共4页
【计算机类职业资格】国家二级C++机试(操作题)模拟试卷329及答案解析.doc_第3页
第3页 / 共4页
【计算机类职业资格】国家二级C++机试(操作题)模拟试卷329及答案解析.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、国家二级 C+机试(操作题)模拟试卷 329及答案解析(总分:6.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.使用 VC6打开考生文件夹 projl下的工程 pmjl,其中有“沙发”类 Sofa和主函数 main的定义。程序中位于每个,ERROR*found*下的语句行有错误,请加以更正。更正后程序的输出应该是: 座位数:3 颜色:红色 注意:只能修改每爪ERROR*found*下的那一行,不要改动程序中的其他内容。#includeiostreamus ing namespace std;class Sofa “沙发”类 int seats; 座位数 char

2、color10;颜色 public: ERROR*found* Sofa(int S,const char*CO) ERROR*found* if(CO=NULL) color0=0; elSe strcpy(color,CO); ERROR*found* const char*getSeats()constreturn seats;) const chars getColor()constreturn color;);int main() Sofa safa(3); cout“座位数:”safagetSeats()endl; cout“颜色:”safagetColor()end1; retu

3、rn 0, (分数:2.00)_二、简单应用题(总题数:1,分数:2.00)2.请使用 VC6或使用【答题】菜单打开考生文件夹 proj2下的工程 proj2,该工程中包含一个程序文件maincpp,其中有类 AutoMobile(“汽车”)及其派生类 Car(“小轿车”)、Truck(“卡车”)的定义,还有主函数 main的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为: 车牌号:冀 ABCl234 品牌:ForLand 类别:卡车 当前档位:0 最大载重量:12 车牌号:冀ABCl234 品牌:ForLand 类别:卡车 当前档位:2 最大载重量:12

4、 车牌号:沪 XYZ5678品牌:QQ 类别:小轿车 当前档位:0 座位数:5 车牌号:沪 XYZ5678品牌:QQ 类别:小轿车 当前档位:一 1座位数:5注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“*found*”。#includeiostream#includeiomanip#includecmathusing namespace std;class AutoMobile “汽车”类 char*brand; 汽车品牌 char*number; 车牌号 int speed; 档位:1、2、3、4、5,空档:0,倒档:一 1 public: AutoMobi

5、le(const char*the brand,const char*the_number):speed(0) brand=new charstrlen(the brand)+1 ;*found* _;*found* _; strcpy(number,the number); AutoMobile()deletebrand;deletenumber;) const char*theBrand()constreturn brand; 返回品牌名称 const char*theNumber()constreturn number;) 返回车牌号 int currentSpeed()const re

6、turnspeed; 返回当前档位 void changeGearTo(int the_speed) 换到指定档位 if(speed=一 1speed=5) speed=the_speed; virtual const char*category()const=0, 类别:卡车、小轿车等 virtual void show()const cout”车牌号:”theNumber()* found* ”品牌:”_ ”类别:”category() ”当前档位:”currentSpeed(); ,class Car:public AutoMobileint seats;座位数 public: Car(

7、const char*the_brand,constchar*the_number,int the_seats):AutoMobile(the brand,the number),seats(the seats) int numberOfSeat()constreturn seats;返回座位数 const char*category()constreturn”小轿车”;) 返回汽车类别 void show()const AutoMobile:show(); cout”座位数:ttnumberOfSeat()endl ; , class Truck:public AutoMobile/ “卡车

8、”类 int max load;最大载重量 public: Truck(const char*the brand,const char*the number,int the maxload):AutoMobi le(the brand,thenumber),max load(the max load) int maxLoad()constreturn maxload;返回最大载重量/*found*const char*category()_返回汽车类别 void show()const AutoMobile:show(); cout”最大载重量:”maxLoad()endl; ;int mai

9、n() Truck truck(”ForLand”,”冀 ABC1234”,12); truckshow(); truckchangeGearTo(2); truckshow(); Car car(”QQ”,”沪 xYz5678”,5); carshow(); carchangeGearTo(一 1); carshow(); coutend1; return 0;(分数:2.00)_三、综合应用题(总题数:1,分数:2.00)3.请使用 VC6或使用【答题】菜单打开考生文件夹 proj3下的工程 proj3,其中声明的 CDeepCopy是一个用于表示矩阵的类。请编写这个类的赋值运算符成员函数

10、 operator=,以实现深层复制。 要求: 补充编制的内容写在“*333*”与“*666*”之间。不得修改程序的其他部分。 注意:程序最后将结果输出到文件 outdat 中。输出函数 writeToFile已经编译为 obj文件,并且在本程序中调用。 CDeepCopyh #includeiostream #includestring using namespace std; class CDeepCopy public: int n; 动态数组的元素个数 int *p; 动态数组首地址 CDeepCopy(int); CDeepCopy(); CDeepCopy return 0, (分

11、数:2.00)_正确答案:(正确答案:(1)Sofa(int s,const char*co=“红色”):seats(s) (2)if(co=NULL) (3)int qetSeats()constreturn seats; )解析:解析:程序定义 Sofa类,它包含两个数据成员:字符数组 color和整型变量 seats;还包含一个构造函数,两个公有成员函数,getSeats()函数返回成员 seats的值,getColor()函数返回字符数组color的地址 Sofa 类的定义体中,有三个错误: (1)Sofa 类的构造函数错误:由 main()函数中定义Sofa类对象时可知:构造函数虽然

12、有两个参数,但是可以只传人一个整型变量,所以另一个参数 co需要提供一个默认值,由题意可知程序运行结果输出颜色是红色,所以 co的默认字符串值为“红色”;另外程序需要输出座位数:3,所以成员 seats需要使用形参 s完成初始化,构造函数体中并未对 seats进行赋值。 (2)sofa 类的构造函数中,需要根据形参 co的值是否为空,完成 color的赋值,此处的 if判断需要使用相等关系运算符,而不是赋值运算符。 (3)成员函数 getSeats()返回的是 seats的值,所以返回值应该是 int类型,而不是 const char*类型。二、简单应用题(总题数:1,分数:2.00)2.请使

13、用 VC6或使用【答题】菜单打开考生文件夹 proj2下的工程 proj2,该工程中包含一个程序文件maincpp,其中有类 AutoMobile(“汽车”)及其派生类 Car(“小轿车”)、Truck(“卡车”)的定义,还有主函数 main的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为: 车牌号:冀 ABCl234 品牌:ForLand 类别:卡车 当前档位:0 最大载重量:12 车牌号:冀ABCl234 品牌:ForLand 类别:卡车 当前档位:2 最大载重量:12 车牌号:沪 XYZ5678品牌:QQ 类别:小轿车 当前档位:0 座位数:5 车牌

14、号:沪 XYZ5678品牌:QQ 类别:小轿车 当前档位:一 1座位数:5注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“*found*”。#includeiostream#includeiomanip#includecmathusing namespace std;class AutoMobile “汽车”类 char*brand; 汽车品牌 char*number; 车牌号 int speed; 档位:1、2、3、4、5,空档:0,倒档:一 1 public: AutoMobile(const char*the brand,const char*the_num

15、ber):speed(0) brand=new charstrlen(the brand)+1 ;*found* _;*found* _; strcpy(number,the number); AutoMobile()deletebrand;deletenumber;) const char*theBrand()constreturn brand; 返回品牌名称 const char*theNumber()constreturn number;) 返回车牌号 int currentSpeed()const returnspeed; 返回当前档位 void changeGearTo(int th

16、e_speed) 换到指定档位 if(speed=一 1speed=5) speed=the_speed; virtual const char*category()const=0, 类别:卡车、小轿车等 virtual void show()const cout”车牌号:”theNumber()* found* ”品牌:”_ ”类别:”category() ”当前档位:”currentSpeed(); ,class Car:public AutoMobileint seats;座位数 public: Car(const char*the_brand,constchar*the_number,

17、int the_seats):AutoMobile(the brand,the number),seats(the seats) int numberOfSeat()constreturn seats;返回座位数 const char*category()constreturn”小轿车”;) 返回汽车类别 void show()const AutoMobile:show(); cout”座位数:ttnumberOfSeat()endl ; , class Truck:public AutoMobile/ “卡车”类 int max load;最大载重量 public: Truck(const

18、char*the brand,const char*the number,int the maxload):AutoMobi le(the brand,thenumber),max load(the max load) int maxLoad()constreturn maxload;返回最大载重量/*found*const char*category()_返回汽车类别 void show()const AutoMobile:show(); cout”最大载重量:”maxLoad()endl; ;int main() Truck truck(”ForLand”,”冀 ABC1234”,12);

19、 truckshow(); truckchangeGearTo(2); truckshow(); Car car(”QQ”,”沪 xYz5678”,5); carshow(); carchangeGearTo(一 1); carshow(); coutend1; return 0;(分数:2.00)_正确答案:(正确答案:(1)strcpy(brand,the_brand) (2)number=new charstrlen(the_number)+1 (3)theBrand() (4)constreturn”卡车”;)解析:解析:(1)主要考查考生对 strcpy函数的掌握情况,在上一条语句程

20、序给 brand指针分配了空间,在这里要复制字符串 the_brand,即 strepy(brand,thebrand);。 (2)主要考查考生对动态分配的掌握情况,参考 brand指针的复制过程完成该语句,先给指针 number分配空间,通过 new来完成:number=new charstrlen(the_number)+1;。 (3)主要考查考生对成员函数的掌握,由程序可知这里要输出的是品牌,因此调用成员函数 theBrand()来输出品牌。 (4)主要考查考生对纯虚函数的掌握,根据纯虚函数的定义:virtual const char*category()const=0;,可知在这里要填

21、写:constreturn”卡车”;。三、综合应用题(总题数:1,分数:2.00)3.请使用 VC6或使用【答题】菜单打开考生文件夹 proj3下的工程 proj3,其中声明的 CDeepCopy是一个用于表示矩阵的类。请编写这个类的赋值运算符成员函数 operator=,以实现深层复制。 要求: 补充编制的内容写在“*333*”与“*666*”之间。不得修改程序的其他部分。 注意:程序最后将结果输出到文件 outdat 中。输出函数 writeToFile已经编译为 obj文件,并且在本程序中调用。 CDeepCopyh #includeiostream #includestring usi

22、ng namespace std; class CDeepCopy public: int n; 动态数组的元素个数 int *p; 动态数组首地址 CDeepCopy(int); CDeepCopy(); CDeepCopy& operator = (constCDeepCopy&r);赋值运算符函数;void writeToFile(char*);maincpp#include”CDeepCopyh”CDeepCopy:CDeepCopy()deleteP;)CDeepCopy:CDeepCopy(int k)n=k;P=new intn;构造函数实现 CDeepCopy CDeepCop

23、y: operator =(const CDeepCopyr)赋值运算符函数实现*333*666*int main() CDeepCopy a(2),d(3); aPo=1;dP0=666;对象 a,d 数组元素的赋值 CDeepCopy b(3); aP0=88;b=a;调用赋值运算符函数 coutbP0;显示内层局部对象的数组元素 coutdP0;显示 d数组元素 aP0的值 cout”d fade away;n”;coutaP0;显示 a数组元素aP0的值 writeToFile(“”); return 0;(分数:2.00)_正确答案:(正确答案:n=rn; 把对象 r字符长度赋值给 n deletep; 删除动态数组 p p=new intn; 给动态数组 p分配空间为 n for(int i=0;in;i+) 遍历对象 r中的数组 p pi =rpi; 把 rpi赋值给 pi return*this; 返回被赋值的对象)解析:解析:主要考查考生对运算符重载的掌握,由注释可知此处要实现赋值运算符函数。要重载的运算符是“=”,该类的成员是动态数组 p,数组元素个数为 n,因此先释放原来的动态数组,再分配空间,然后逐个复制元素即可。

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 考试资料 > 职业资格

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1