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

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

1、国家二级 C+机试(操作题)模拟试卷 458及答案与解析 一、基本操作题 1 请使用 VC6或使用【答题】菜单打开考生文件夹 proj1下的工程 proj1。程序中位于每个 “ ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name: Smith Age: 21 ID: 99999 Coure-Num: 12 Record: 970 注意:只修改每个 “ ERROR*found*”下的那一行,不要改动程序中的其他内容。 #include using namespace std; class StudentInfo protected: ERROR *f

2、ound* char Name; int Age; int ID; int CourseNum; float Record; public: StudentInfo(char*name, intAge , int IDf int courseNum , float record); ERROR*found* void StudentInfo() float AVerageRecord() return Record CourseNum; void show()const coutID=ID; CourseNum=courseNum; Record=record; int main() Stud

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

4、冀 ABC1234 品牌: ForLand 类别:卡车 当前档位: 2 最大载重量:12 车牌号:沪 XYZ5678 品牌: QQ 类别:小轿车当前档位: 0 座位数: 5 车牌号:沪 XYZ5678品牌: QQ类别:小轿车当前档位: -1 座位数: 5 注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动 “ *found*”。 #include #include #include using namespace std; class AutoMobile “汽车 ”类 char*brand; 汽车品牌 char*number; 车牌号 int speed; 档位:

5、1、 2、 3、 4、 5,空档: 0,倒档: -1 public: AutoMobile(const char * the_ brand, const char*the_number): speed(0) brand=new char strlen(the brand)+1; *found* _; *found* _; strcpy(number, the number); AutoMobile()delete brand; deletenumber; const char*theBrand()const return brand; 返回品牌名称 const char *theNumber(

6、) constreturn number; ) 返回车牌号 int currentSpeed()constreturn speed; 返回当前档位 void changeGearTo(int the speed) 换到指定档位 if(speed=-1&speed using namespace std; class Person char*idcardno; 用动态空间存储的身份证号 char*name; 用动态空间存储的姓名 bool ismale;性别: true为男, false为女 public: Person(const char*pid, const char*pname, boo

7、l pmale); Person() *1* *found* _; const char*getIDCardNO() constreturn idcardno; const char*getName()const(return name; void rename(const char*newname); bool isMale()constreturn ismale; ; class Staff: public Person char*department; double salary; public: Staff(const char*id card no, const char*p nam

8、e, bool is_male, const char*dept, double sal); Staff()deletedepartment; ) cons t char *getDepartment() constreturn department; void setDepartment(const char*d); double getSalary()constreturn salary; void setSalary(double S)salary=s; ; Person: Person(const char* id_card_no, const char*p_ name, bool i

9、s 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; *found* _; strcpy(name, new name); Staff: Staff fconst char*id card_no, const char*p_name, bool is_

10、male, *3* *found* const char*dept, double sal): department=new charstrlen (dept)+1; strcpy(department, dept); salary=sal; void Staff: setDepartment (const char*dept) deletedepartment; department=new charstrlen(dept)+1; strcpy(department, dept); int main() Staff Zhangsan(“123456789012345“, “张三 “, fal

11、se, “人事部 “, 1234 56); Zhangsan rename(“张小丽 “); coutZhangsan getName() Zhangsan getIDCardNO()endl; return 0 ; 国家二 级 C+机试(操作题)模拟试卷 458答案与解析 一、基本操作题 1 【正确答案】 (1)char*Name: (2) StudentInfo() (3)StudentInfo: StudentInfo(char*name, int age, int ID, int courseNum, float record) 【试题解析】 (1)主要考查考生对动态数组的掌握,由题目

12、可知 Name应该指向一个动态数组,而不是一个有效 char型字符,因此要定义成 char型指针。 (2)主要考查考生对析构 函数的掌握,析构函数不需要函数返回类型,应把 void去掉。 (3)主要考查考生对构造函数定义的掌握,构造函数也要使用作用域符号“: ”。 二、简单应用题 2 【正确答案】 (1)strcpy(brand, the_brand) (2)number=new charstrlen(the_number)+1 (3)theBrand() (4)constreturn“卡车 “; 【试题解析】 (1)主要考查考生对 strcpy函数的掌握情况,在上一条语句程序给brand指针

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

14、return“卡车 “; 。 三、综合应用题 3 【正确答案】 (1)deleteidcardno, name (2)name=new charstrlen(new_name)+1 (3)Person(id_card_no, p_name, is_male) 【试题解析】 (1)主要考查考生对析构函数的掌握,题目要求释放两个指针成员所指向的动态空间。释放动态空间应使用 delete语句,因为要释放两个指针,使用语句: deleteidcardno, name;实现。注意当释放多个指针时,中间用逗号隔开。 (2)考查动态数组分配空间,题目要求指针 name指向申请到的足够容纳字符串new_name的空间。使用 strlen(new_name)得到字符串 new_name的长度,但是这里要注意加 1。 (3)主要考查考生对派生类构造函数的掌握,题目要求利用参数表中前几个参数对基类 Person进行初始化。派生类的构造函数要使用成员列表初始化法对基类初始化,因此为 const char*dept, doublesal): Person(id_card_no, p_name,is_male)。

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

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

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