[计算机类试卷]国家二级C++机试(操作题)模拟试卷347及答案与解析.doc

上传人:testyield361 文档编号:497429 上传时间:2018-11-28 格式:DOC 页数:10 大小:42KB
下载 相关 举报
[计算机类试卷]国家二级C++机试(操作题)模拟试卷347及答案与解析.doc_第1页
第1页 / 共10页
[计算机类试卷]国家二级C++机试(操作题)模拟试卷347及答案与解析.doc_第2页
第2页 / 共10页
[计算机类试卷]国家二级C++机试(操作题)模拟试卷347及答案与解析.doc_第3页
第3页 / 共10页
[计算机类试卷]国家二级C++机试(操作题)模拟试卷347及答案与解析.doc_第4页
第4页 / 共10页
[计算机类试卷]国家二级C++机试(操作题)模拟试卷347及答案与解析.doc_第5页
第5页 / 共10页
点击查看更多>>
资源描述

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

2、har getX()constreturn xj public: static int Y; private: char x_; ; ERROR*found* int Foo y_=42; int main(int argo, char*argv) ERROR* found* Foo f; ERROR*found* cout using namespace std; class Class “班级 ”类 public: ClasS(const char*id, const char。 room) strcpy(class id, id); /*found* const char*getClas

3、s ID()constre- turn class id; /返回班号 /*found* const char*getClassroom()const _ 返回所在教室房号 void changeRoOmTO(const char*new room) 改换到另一个指定房号的教室 strcpy(classroom, new room); private: char class id20; 班号 char classroom20;所在教室房号 ; class Student “学生 ”类 char my_id10; /学号 char my_name20; 姓名 Class strcpy(my_na

4、me, the_name); const char*getID()constreturn my_id; ) const char*getName()constre turn my_name; ) Class getClass 0constreturn my_class; ) ; void showStudent(Student*Stu) coutgetID()getName()getClass() getClassID()getClass() getClassr00m() using namespace std; ClaSS Person char*idcardno; 用动态空间存储的身份证号

5、 char*name; 用动态空间存储的姓名 bool ismale; 性别: true为男, false 为女 public: Person(const char*pid, const char *pname, bool pmale); 一 Person() *1* *found* _; const char*getIDCardNO()const return idcardno; ) const char*getName()constreturn name; ) void rename(const char*new name); bool isMale()const(return ismal

6、e; ) , class Staff: public Person char*department; double salary; public: Staff(const char*id card no, const char*P_name,bool is_male, const char*dept, double sal); Staff()deletedepartment; ) const char*getDepartment()const return department;) void setDepartment(const char*d); double getSalary()cons

7、treturn salary; ) void setSalary(double S)salary=S; , Person: Person fconst char*id card 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*n

8、ew name) deletename; *2* *found* _; strcpy(name, new name); Staff: Staff ( const char*id card no, const char*P name, bool is male, *3* * found* const char*dept, double sal): _ department=new charstrlen(dept)+1; strcpy(department, dept); salary=sal; void Staff: setDepartment (const char*dept) deleted

9、epartment; department=new charstrlen(dept)+1; strcpy(department, dept); int main() Staff Zhangsan(”123456789012345”, “张三 “, false, ”人事部 ”, 1234 56); Zhangsan rename(”张小丽 ”); coutZhangsan getName()Zhang。 san getIDCardNO()endl; return 0; 4 请使用 VC6或使用【答题】菜单打开考生目录 proj3下的工程文件 proj3,此工程包含一个源程序文件 proj3 cp

10、p,其中定义了用于表示二维向量的类MyVector;程序应当显示 (6, 8)。但程序中有缺失部分,请按照以下提示,把缺失部分补充完整: (1)在 “ * 1* *found*”的下方是构造函数的定义,它用参数提供的坐标对 x和 y进行初始化。 (2)在 “ *2* *found*”的下方是减法运算符函数定义中的一条语句。两个二维向量相减生成另一个二维向量:其 X坐标等于两向量 X坐标之差,其 Y坐标等于两向量 Y坐标之差。 (3)在 “ *3* *found*”的下方,语句的功能是使变量 v3获得新值,它等于向量 v1与向量 v2之和。 注意:只在指定位置编写适当代码,不要改动程序中的其他内

11、容,也不要删除或移动 “*found*”。 proj 3 cpp #include iostream using std: ostream; using std: cout; using std: endl; class MyVector 表示二维向量的类 double X; x坐标值 double y; Y坐标值 public: MyVector(double i=0 0, double j= 0 0); 构造函数 MyVector operator+(MyVector j); 重载运算符 + friend MyVector operator一 (MyVec tor i, MyVector

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

13、 int main() MyVector vl(2, 3), v2(4, 5), v3; *3* *found* v3=_; cout v3 end1; return 0; 国家二级 C+机试(操作题)模拟试卷 347答案与解析 一、基本操作题 1 【正确答案】 (1)int Foo: y_=42; (2)Foo f(a); (3)cout”X=”f getX()endl; 【试题解析】 (1)主要考查考生对静态成员的掌握,因为静态整型变量 y_是 Foo类的公有成员,所以给 y_赋值时要加上 “Foo: ”,即 int Foo: Y_=42;。 (2)主要考查考生对构造函数的掌握,题目要求程

14、序输出: X=a Y=42 可以知道,在给 Foo类的 f声明时要同时初始化为字符 a,即语句 Foo f(a);。 (3)主要考查考生对成员函数的掌握,因为 x是类 Foo的私有成员,所以不能在main函数中直接调用,要通过公有成员函数 getX()调用。 二、简单应用题 2 【正确答案】 (1)strcpy(classroom, room); (2)retum classroom; (3)my_class(the_class) (4)cla changeRoomTo(”311”): 【试题解析】 (1)主要考查考生对 strcpy函数的掌握情况,根据上一条语句:strcpy(class_i

15、d, id);可知,这条语句要复制字符串 room,因此使用 strcpy函数复制,即 strcpy(classroom, room);。 (2)主要考查考生对函数返回值的掌握情况,根据函 数要求:返回所在教室房号及函数要求返回的类型为 const char*,可以得出这里直接使用 return语句返回classroom即可。 (3)主要考查考生对构造函数的掌握情况,先看函数体中: strcpy(my_id, the_id); strcpy(my_name, the_name); 可知只有参数 Class&the_class未使用,因此在这里使用成员列表初始化给my_class赋初始值。 (4

16、)主要考查考生对成员函数调用的掌握,程序要求 062113班的教室由 521改换到 311。在类 Class中已经定义了函数: void changeRoomTo(const char*new_room),因此直接调用函数 changeRoomTo即可。 三、综合应用题 3 【正确答案】 (1)deleteidcardno, name (2)name=new charstrlen(new_name)+1 (3)Person(id_card_no, p_name, is_male) 【试题解析】 (1)主要考查考生对析构函数的掌握,题目要求释放两个指针成员所指向的动态空间。释放动态空间应使 用

17、delete语句,因为要释放两个指针,使用语句: deleteidcardno, 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 【正确答案】 (1)MyVector: MyVector (2)i xj x, i yj y (3)v1+v2 【试题解析】 (1)主要考查的是构造函数,在类外定义构造函数时要使用类名和作用域,即 MyVector: MyVectoro (2)主要考查重载运算符 “一 ”的返回语句,返回值应为向量 i和 j的差,即MyVector(i xj x, i yj y);。 (3)主要考查重载运算符 “+”的使用,由题目可知 v3是 vl和 v2的和,前面我们已经重新定义了运算符 “+”,所以在这里直接使用语句 v3=v1+V2;即可。

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

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

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