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

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

1、国家二级 C+机试(操作题)模拟试卷 347及答案解析(总分:8.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.请使用 VC6或使用【答题】菜单打开考生文件夹 projl下的工程 proj1,该工程中包含程序文件mainepp,其中有类 Foo和主函数 main的定义。程序中位于每个“ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应该是: X=a Y=42 注意:只修改每个“ERROR*found*”下的那一行,不要改动程序中的其他内容。#includeiostreamusing namespace st;d;class Foop

2、ublic: Foo(char x)x =x;) char getX()constreturn xjpublic: static int Y;private: char x_;;ERROR*found*int Fooy_=42;int main(int argo,char*argv)ERROR* found* Foo f;ERROR*found* cout”X=”fx end1; cout”Y=” fy_endl; return 0;(分数:2.00)_二、简单应用题(总题数:1,分数:2.00)2.请使用 VC6或使用【答题】菜单打开考生文件夹 prog2下的工程 prog2,此工程中包含一

3、个程序文件maincpp,其中有“班级”类 Class和“学生”类 Student的定义,还有主函数 main的定义。在主函数中定义了两个“学生”对象,他们属于同一班级。程序展示,当该班级换教室后,这两个人的教室也同时得到改变。请在横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:改换教室前: 学号:0789 姓名:张三 班级:062113 教室:521 学号:0513 姓名:李四 班级:062113 教室:521 改换教室后: 学号:0789 姓名:张三 班级:062113 教室:311 学号:0513 姓名:李四 班级:062113 教室:311 注意:只能在

4、横线处填写适当的代码,不要改动程序中的其他内容。#includeiostreamusing namespace std;class Class “班级”类 public: ClasS(const char*id,const char。room) strcpy(class id,id); /*found* const char*getClass ID()constre-turn class id; /返回班号/*found* const char*getClassroom()const_ 返回所在教室房号 void changeRoOmTO(const char*new room) 改换到另一个

5、指定房号的教室 strcpy(classroom,new room); private: char class id20; 班号 char classroom20;所在教室房号 ; class Student “学生”类 char my_id10;/学号 char my_name20; 姓名 Class strcpy(my_name,the_name); const char*getID()constreturnmy_id;) const char*getName()constreturn my_name;)Class getClass 0constreturn my_class;);void

6、 showStudent(Student*Stu)cout”学号:”stu 一getID()“ “;cout”姓名:”stu-getName()“ “;cout”班级:”stu 一getClass()getClassID()”; cout“教室:”stu 一getClass()getClassr00m()endl;int main() Class cla(”062113”,”521”); Student Zhang(“0789”,“张三”,cla),Li(”0513”,“李四”,cla); cout”改换教室前:”endl; showStudent(Zhang);showStudent(Li)

7、;062113 班的教室由 521改换到 311*found* cout”改换教室后:”endl; showStudent(Zhang); showStudent( Staff()deletedepartment;) const char*getDepartment()constreturn department;) void setDepartment(const char*d); double getSalary()constreturn salary;) void setSalary(double S)salary=S; , Person:Person fconst char*id ca

8、rd no,const char*P_name,bool_is_ male):ismale(iS male) idcardno=new charstrlen(id card no)+1; strcpy(idcardno,id card no); name=new charstrlen(p name)+1;strcpy(name,P name); void Person:rename ( const char*new name) deletename;*2* *found* _; strcpy(name,new name);Staff:Staff ( const char*id cardno,c

9、onst char*P name,bool ismale,*3* * found*const char*dept,double sal):_department=new charstrlen(dept)+1;strcpy(department,dept);salary=sal;void Staff: setDepartment (constchar*dept)deletedepartment; department=new charstrlen(dept)+1;strcpy(department,dept);int main() Staff Zhangsan(”123456789012345”

10、,“张三“,false,”人事部”,123456);Zhangsanrename(”张小丽”);coutZhangsangetName()Zhang。sangetIDCardNO()endl; return 0;(分数:2.00)_4.请使用 VC6或使用【答题】菜单打开考生目录 proj3下的工程文件 proj3,此工程包含一个源程序文件proj3cpp,其中定义了用于表示二维向量的类 MyVector;程序应当显示(6,8)。但程序中有缺失部分,请按照以下提示,把缺失部分补充完整: (1)在“* 1* *found*”的下方是构造函数的定义,它用参数提供的坐标对 x和 y进行初始化。 (2

11、)在“*2* *found*”的下方是减法运算符函数定义中的一条语句。两个二维向量相减生成另一个二维向量:其 X坐标等于两向量 X坐标之差,其Y坐标等于两向量 Y坐标之差。 (3)在“*3* *found*”的下方,语句的功能是使变量 v3获得新值,它等于向量 v1与向量 v2之和。 注意:只在指定位置编写适当代码,不要改动程序中的其他内容,也不要删除或移动“*found*”。proj 3cpp#includeiostreamusing std:ostream;using std:cout;using std:endl;class MyVector 表示二维向量的类double X;x 坐标值

12、 double y; Y 坐标值 public:MyVector(double i=00,double j=00);构造函数 MyVector operator+(MyVector j); 重载运算符+ friend MyVector operator 一(MyVector i,MyVector j); 重载运算符一 friend ostream *1* *found* _(double i,double j):X(i), Y(j) MyVector MyVector:operator+(MMVecor j) return MyVector(x+jX,Y+jy); MyVector opera

13、tor 一(MyVector i, MyVector J) *2* *found*return MyVector(_); ostreamprivate: char x_;;ERROR*found*int Fooy_=42;int main(int argo,char*argv)ERROR* found* Foo f;ERROR*found* cout”X=”fx end1; cout”Y=” fy_endl; return 0;(分数:2.00)_正确答案:(正确答案:(1)int Foo:y_=42; (2)Foo f(a); (3)coutfgetX()endl;)解析:解析:(1)主要考

14、查考生对静态成员的掌握,因为静态整型变量 y_是 Foo类的公有成员,所以给 y_赋值时要加上“Foo:”,即 int Foo:Y_=42;。 (2)主要考查考生对构造函数的掌握,题目要求程序输出: X=a Y=42 可以知道,在给 Foo类的 f声明时要同时初始化为字符 a,即语句 Foo f(a);。 (3)主要考查考生对成员函数的掌握,因为 x是类 Foo的私有成员,所以不能在 main函数中直接调用,要通过公有成员函数 getX()调用。二、简单应用题(总题数:1,分数:2.00)2.请使用 VC6或使用【答题】菜单打开考生文件夹 prog2下的工程 prog2,此工程中包含一个程序文

15、件maincpp,其中有“班级”类 Class和“学生”类 Student的定义,还有主函数 main的定义。在主函数中定义了两个“学生”对象,他们属于同一班级。程序展示,当该班级换教室后,这两个人的教室也同时得到改变。请在横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:改换教室前: 学号:0789 姓名:张三 班级:062113 教室:521 学号:0513 姓名:李四 班级:062113 教室:521 改换教室后: 学号:0789 姓名:张三 班级:062113 教室:311 学号:0513 姓名:李四 班级:062113 教室:311 注意:只能在横线处填

16、写适当的代码,不要改动程序中的其他内容。#includeiostreamusing namespace std;class Class “班级”类 public: ClasS(const char*id,const char。room) strcpy(class id,id); /*found* const char*getClass ID()constre-turn class id; /返回班号/*found* const char*getClassroom()const_ 返回所在教室房号 void changeRoOmTO(const char*new room) 改换到另一个指定房号

17、的教室 strcpy(classroom,new room); private: char class id20; 班号 char classroom20;所在教室房号 ; class Student “学生”类 char my_id10;/学号 char my_name20; 姓名 Class strcpy(my_name,the_name); const char*getID()constreturnmy_id;) const char*getName()constreturn my_name;)Class getClass 0constreturn my_class;);void sho

18、wStudent(Student*Stu)cout”学号:”stu 一getID()“ “;cout”姓名:”stu-getName()“ “;cout”班级:”stu 一getClass()getClassID()”; cout“教室:”stu 一getClass()getClassr00m()endl;int main() Class cla(”062113”,”521”); Student Zhang(“0789”,“张三”,cla),Li(”0513”,“李四”,cla); cout”改换教室前:”endl; showStudent(Zhang);showStudent(Li);062

19、113 班的教室由 521改换到 311*found* cout”改换教室后:”endl; showStudent(Zhang); showStudent( Staff()deletedepartment;) const char*getDepartment()constreturn department;) void setDepartment(const char*d); double getSalary()constreturn salary;) void setSalary(double S)salary=S; , Person:Person fconst char*id card n

20、o,const char*P_name,bool_is_ male):ismale(iS male) idcardno=new charstrlen(id card no)+1; strcpy(idcardno,id card no); name=new charstrlen(p name)+1;strcpy(name,P name); void Person:rename ( const char*new name) deletename;*2* *found* _; strcpy(name,new name);Staff:Staff ( const char*id cardno,const

21、 char*P name,bool ismale,*3* * found*const char*dept,double sal):_department=new charstrlen(dept)+1;strcpy(department,dept);salary=sal;void Staff: setDepartment (constchar*dept)deletedepartment; department=new charstrlen(dept)+1;strcpy(department,dept);int main() Staff Zhangsan(”123456789012345”,“张三

22、“,false,”人事部”,123456);Zhangsanrename(”张小丽”);coutZhangsangetName()Zhang。sangetIDCardNO()endl; return 0;(分数:2.00)_正确答案:(正确答案:(1)deleteidcardno,name (2)name=new charstrlen(new_name)+1 (3)Person(id_card_no,p_name,is_male)解析:解析:(1)主要考查考生对析构函数的掌握,题目要求释放两个指针成员所指向的动态空间。释放动态空间应使用 delete语句,因为要释放两个指针,使用语句:dele

23、teidcardno, name;实现。注意当释放多个指针时,中间用逗号隔开。 (2)考查动态数组分配空间,题目要求指针 natne指向申请到的足够容纳字符串 new_name的空间。使用 strlen(new_name)得到字符串 new_name的长度,但是这里要注意加 1。 (3)主要考查考生对派生类构造函数的掌握,题目要求利用参数表中前几个参数对基类 Person进行初始化。派生类的构造函数要使用成员列表初始化法对基类初始化,因此为 const char*dept,double sal):Person(id_card_no,p_name,is_male)。4.请使用 VC6或使用【答题

24、】菜单打开考生目录 proj3下的工程文件 proj3,此工程包含一个源程序文件proj3cpp,其中定义了用于表示二维向量的类 MyVector;程序应当显示(6,8)。但程序中有缺失部分,请按照以下提示,把缺失部分补充完整: (1)在“* 1* *found*”的下方是构造函数的定义,它用参数提供的坐标对 x和 y进行初始化。 (2)在“*2* *found*”的下方是减法运算符函数定义中的一条语句。两个二维向量相减生成另一个二维向量:其 X坐标等于两向量 X坐标之差,其Y坐标等于两向量 Y坐标之差。 (3)在“*3* *found*”的下方,语句的功能是使变量 v3获得新值,它等于向量

25、v1与向量 v2之和。 注意:只在指定位置编写适当代码,不要改动程序中的其他内容,也不要删除或移动“*found*”。proj 3cpp#includeiostreamusing std:ostream;using std:cout;using std:endl;class MyVector 表示二维向量的类double X;x 坐标值 double y; Y 坐标值 public:MyVector(double i=00,double j=00);构造函数 MyVector operator+(MyVector j); 重载运算符+ friend MyVector operator 一(My

26、Vector i,MyVector j); 重载运算符一 friend ostream *1* *found* _(double i,double j):X(i), Y(j) MyVector MyVector:operator+(MMVecor j) return MyVector(x+jX,Y+jy); MyVector operator 一(MyVector i, MyVector J) *2* *found*return MyVector(_); ostream&operator(ostream&OS, MyVector V) OS(vX,vY);输出向量 v的坐标 return OS

27、; int main() MyVector vl(2,3),v2(4,5),v3; *3* *found* v3=_; coutv3end1; return 0; (分数:2.00)_正确答案:(正确答案:(1)MyVector:MyVector (2)ixjx,iyjy (3)v1+v2)解析:解析:(1)主要考查的是构造函数,在类外定义构造函数时要使用类名和作用域,即MyVector:MyVectoro (2)主要考查重载运算符“一”的返回语句,返回值应为向量 i和 j的差,即MyVector(ixjx,iyjy);。 (3)主要考查重载运算符“+”的使用,由题目可知 v3是 vl和v2的和,前面我们已经重新定义了运算符“+”,所以在这里直接使用语句 v3=v1+V2;即可。

展开阅读全文
相关资源
猜你喜欢
  • BS PD IEC TS 62763-2013_5284 Pilot function through a control pilot circuit using PWM (pulse width modulation) and a control pilot wire《通过控制导向线使用PWM (脉冲宽度调制) 的导向功能和控制导向线》.pdf BS PD IEC TS 62763-2013_5284 Pilot function through a control pilot circuit using PWM (pulse width modulation) and a control pilot wire《通过控制导向线使用PWM (脉冲宽度调制) 的导向功能和控制导向线》.pdf
  • BS ISO 8070-2007 Milk and milk products - Determination of calcium sodium potassium and magnesium contents - Atomic absorption spectrometric method《牛奶和奶制品 钙、钠、钾和镁含量的测定 原子吸.pdf BS ISO 8070-2007 Milk and milk products - Determination of calcium sodium potassium and magnesium contents - Atomic absorption spectrometric method《牛奶和奶制品 钙、钠、钾和镁含量的测定 原子吸.pdf
  • BS ISO 8082-1-2009 Self-propelled machinery for forestry - Laboratory tests and performance requirements for roll-over protective structures - General machines《林业用自推进机械 防倾.pdf BS ISO 8082-1-2009 Self-propelled machinery for forestry - Laboratory tests and performance requirements for roll-over protective structures - General machines《林业用自推进机械 防倾.pdf
  • BS ISO 8082-2-2011 Self-propelled machinery for forestry Laboratory tests and performance requirements for roll-over protective structures Machines having a rotating platf.pdf BS ISO 8082-2-2011 Self-propelled machinery for forestry Laboratory tests and performance requirements for roll-over protective structures Machines having a rotating platf.pdf
  • BS ISO 8083-2006 Machinery for forestry - Falling-object protective structures (FOPS) - Laboratory tests and performance requirements《林业机械 落体防护装置(FOPS) 实验室试验和性能要求》.pdf BS ISO 8083-2006 Machinery for forestry - Falling-object protective structures (FOPS) - Laboratory tests and performance requirements《林业机械 落体防护装置(FOPS) 实验室试验和性能要求》.pdf
  • BS ISO 8086-2004 Dairy plant - Hygiene conditions - General guidance on inspection and sampling procedures《乳品厂 卫生条件 检验和取样程序通用指南》.pdf BS ISO 8086-2004 Dairy plant - Hygiene conditions - General guidance on inspection and sampling procedures《乳品厂 卫生条件 检验和取样程序通用指南》.pdf
  • BS ISO 8096-2005 Rubber- or plastics-coated fabrics for water resistant clothing - Specification《雨衣用橡胶或塑料涂覆织物 规范》.pdf BS ISO 8096-2005 Rubber- or plastics-coated fabrics for water resistant clothing - Specification《雨衣用橡胶或塑料涂覆织物 规范》.pdf
  • BS ISO 8097-2001 Aircraft Minimum airworthiness requirements and test conditions for certified air cargo unit load devices《航空器 经认证的航空货运集装单元装置最低适航性要求和试验条件》.pdf BS ISO 8097-2001 Aircraft Minimum airworthiness requirements and test conditions for certified air cargo unit load devices《航空器 经认证的航空货运集装单元装置最低适航性要求和试验条件》.pdf
  • BS ISO 8114-1993 Textile machinery and accessories - Spindles for ring-spinning and doubling machines - List of equivalent terms《纺织机械和附件 环锭纺纱机和并线机用锭子 同义术语表》.pdf BS ISO 8114-1993 Textile machinery and accessories - Spindles for ring-spinning and doubling machines - List of equivalent terms《纺织机械和附件 环锭纺纱机和并线机用锭子 同义术语表》.pdf
  • 相关搜索

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

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