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

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

1、国家二级 C+机试(操作题)模拟试卷 203及答案与解析 一、基本操作题 1 请使用 VC6或使用【答题】菜单打开考生文件夹 proj1下的工程 proj1,该工程中包含程序文件 main cpp,其中有类 Clock(“时钟 ”)的定义和主函数 main的定义。程序中位于每个 “ ERROR*found*”之后的一行语句有错误请加以改正。改正后程序的输出结果应为: Initial times are 0d: 0h: 0m: 59s After one second times are 0d: 0h: 1m: 0s 注意:只修改每个 “ ERROR*found*”下的那一行,不要改动程序中的其

2、他内容。 1 #include 2 using namespace std; 3 4 class Clock 5 6 public: 7 Clock(unsigned long i=0); 8 void set(unsigned long i=0); 9 void print()const; 10 void tick(); 时间前进一秒 11 Clock operator+(); 12 private: 13 uns igned long total sec, seconds minutes, hours, days; 14 ; 15 Clock: Clock(unsigned long i)

3、 : total_sec(i), seconds(i 60), minutes(i 60) 60), hours(i 3600) 24), days(i 86400) 16 void Clock: set(unsigned long i) 17 18 total sec=i; 19 seconds=i 60; 20 minutes: (i 60) 60; 21 hours=(i 3600) 60; 22 days: i 86400; 23 24 ERROR *found* 25 void Clock: print() 26 27 cout 2 using namespace std; 3 cl

4、ass Room “房间 ”类 4 int room no; 房间号 5 double length; 房间长度 (m) 6 double width; 房间宽度 (m) 7 public: 8 Room(int the_room_no, double the_length, double the_width):room_no(the_room_no), length(the_length), width(the_width) 9 int theRoomNo()constreturn room_ 10 no;) 11 返回房间号 12 double theLength()constreturn

5、length; ) 返回房间长度 13 double theWidth()const return width; 返回房间宽度 14 *found* 15 double theArea()const _返回房间面积 (矩形面积 ) 16 ; 17 class Office: public Room “办公室 “类 18 char*depart; 所属部门 19 public: 20 Office(int the_room_no,double the_ length, double the_width, constchar*the_depart) 21 *found* 22 : _ 23 dep

6、art=new charstrlen(the_de-part)+1; 24 *found* 25 strcpy(_); 26 27 一 Office()deletedepart j 28 const char。 theDepartment()const return depart; )返回所属 部门 29 , 30 int main() 31 *found* 32 Office_; 33 cout 3 using namespace std; 4 5 clasS Name 6 protected: 7 char*surname; 姓 8 char*firstname; 名 9 public:

7、10 Name()deletesurname; deletefirstname; H virtual void show()=0; 12 ; 13 14 class Namel: public Name 15 public: 16 Namel(const char*name); 17 *1* *found* 18 void show()_; 19 ; 20 class Name2: public Name 21 public: 22 Name2(const char*name); 23 void show() 24 cout show(); coutshow(); coutendl; 63 d

8、elete n; 64 return 0; 65 国家二级 C+机试(操作题)模拟试卷 203答案与解析 一、基本操作题 1 【正确答案】 (1)void Clock: print()const (2)set(+total_sec); (3)return*this: 【试题解析】 (1)主要考查考生对成员函数的掌握,由 Clock类中对函数 print的声明 void print()const;可知,在定义 print函数时少了 const。 (2)主要考查考生对 +操作的掌握,根据函数要求,时间要先前进一秒,再调用函数 set,因此 total_see+应改为 +total_sec。 (3)

9、主要考查考生对 this指针的掌握,函数要求返回值 Clock,即返回一个类,而不是指针,因此使用 *this。 二、简单应用题 2 【正确答案】 (1)return length*width; (2)Room(the_room_no, the_length, the_width) (3)depart, the_depart (4)an_office(308, 5 6, 4 8, “会计科 “) 【试题解析】 (1)主要考查考生对成员函数的掌握,题目要求返回房间面积 (矩形面积 ),由此可知空格部分要填写的是一个 return语句,返回房间面积,也就是length*width,因此可以得出程序

10、 return length*width;。 (2)主要考查考生对派生类的构造函数的 掌握,派生类的构造函数要使用成员列表初始法先对基类进行初始化。 (3)考查 strcpy函数,南前一条语句 depart=new charstrlen(the_depart)+1;可知,程序给 (tepart分配了长度为 the_depan串长加 1的空间,因此要复制字符串the_depan串到 (tepart,直接填写 strepy(depart, the_depart)即可。 (4)主要考查考生对类的掌握,题目要求输出的结果为: 办公室房问号: 308 办公室长度: 5 6 办公 室宽度: 4 8 办公室

11、面积: 26 88 办公室所属部门:会计科 由 Office类的构造函数可知要定义的一个 Office类的对象为 an_office(308,5 6, 4 8, “会计科 “)。 三、综合应用题 3 【正确答案】 (1)coutfirstname“ “surname (2)headi=starti (3)return new Name2(s); else returm new Namel(s) 【试题解析】 (1)主要考查考生对成员函数 的掌握,题目要求按先名后姓的格式输出姓名,因此输出语句的顺序应该是先输出。 first-name,然后再输出surname,注意它们之间还要输出一个空格。 (2)主要考查考生对字符串复制的掌握,题目要求把一个字符序列复制到 head所指向的字符空间中,复制从 start所指向的字符开始,共复制 end-stan个字符。程序已经把 for循环语句写好了,此处只要把复制语句完成即可,即headi=starti。 (3)主要考查考生对动态分配的掌握,题目要求对象必须是动态对象,因此使用flew来分配 空间,建立动态对象: if(p)return new。 Name2(s); else return new。Namel(s);。

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

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

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