【计算机类职业资格】二级C++-67及答案解析.doc

上传人:twoload295 文档编号:1324123 上传时间:2019-10-17 格式:DOC 页数:4 大小:42.50KB
下载 相关 举报
【计算机类职业资格】二级C++-67及答案解析.doc_第1页
第1页 / 共4页
【计算机类职业资格】二级C++-67及答案解析.doc_第2页
第2页 / 共4页
【计算机类职业资格】二级C++-67及答案解析.doc_第3页
第3页 / 共4页
【计算机类职业资格】二级C++-67及答案解析.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、二级 C+-67及答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 proj1下的工程 proj1。此工程定义了 StopWatch(秒表)类,用于表示时、分、秒信息,有构造函数 StopWatch()、设置时间函数 reset(),并且重载了前置和后置+运算符,实现增加 1秒的功能。程序中位于每个“/ERROR *found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应该是: 00:00:00 00:01:00 注意:只修改每个“/ERROR *found*”下的那一行,不要改

2、动程序中的其他内容。 #include iostream #include iomanip using namespace std; class StopWatch /“秒表“类 int hours; /小时 int minutes; /分钟 int seconds; /秒 public: StopWatch(): hours(0), minutes (0), seconds(0) void reset () hours =minutes =seconds =0; StopWatch operator+(int) /后置+ StopWatch old=* this; + (* this); r

3、eturn old; /前进 1秒 StopWatch minutes +; if(minutes =60) minutes =0; hours +; / ERROR * found* return this; friend void show(StopWatch); ; void show (StopWatch watch) cout setfill (0); cout setw(2) watch.hours : setw (2) watch.minutes : setw (2) watch, seconds endl; int main ( ) StopWatch sw; show (sw

4、); for (int i=0; i_二、B简单应用题/B(总题数:1,分数:30.00)2.请使用 VC6或使用答题菜单打开考生文件夹 proj2下的工程 proj2。此工程中定义了一个人员类Person,然后派生出学生类 Student和教授类 Professor。请在横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为: My name is Zhang. my name is Wang and my G.P.A.is 3.88. My name is Li, I have 8 publications 注意:只在横线处填写适当的代码,不要改动程序中的其他内容,

5、也不要删除或移动“/*found*”。 #include iostream using namespace std; class Person public: /* found* _name =NULL; Person (char* s) name = new char strlen (s) +i; strcpy(name, s); Person() if(name!=NULL) delete name; /* found* _Disp() /声明虚函数 cout “My name is“ name “./n“; void setName (char* s) name = new char s

6、trlen (s) +i; strcpy (name, s); protected: char* name; ; class Student : public Person public: /* found* Student (char * s, double g)_ void Disp () cout “my name is“ name “andmy G.P.A. is“ gpa “./n“; private: float gpa; ; class Professor : public Person public: void setPubls (int n) publs =n; void D

7、isp () cout “My name is“ name “, Ihave“ publs “ publications./n“; private: int publs; ; int main () /* found* _; Person x (“Zhang“); p = p-Disp(); Student y(“Wang“, 3.88); p = p-Disp(); Professor z; z. setName (“Li“); z. setPubls (8); p = p-Disp(); return 0; (分数:30.00)_三、B综合应用题/B(总题数:1,分数:40.00)3.请使

8、用 VC6或使用答题菜单打开考生文件夹 proj3下的工程 prog3,其中声明了 MyString类。MyString是一个用于表示字符串的类。成员函数 startsWith的功能是判断此字符串是否以指定的前缀开始,其参数 s用于指定前缀字符串。如果参数 s表示的字符串是 MyString对象表示的字符串的前缀,则返回 true;否则返回 false。注意,如果参数 s是空字符串或等于 MyString对象表示的字符串,则结果为 true。 例如,字符串“abc”是字符串“abcde”的前缀,而字符串“abd”不是字符串“abcde”的前缀。请编写成员函数 startsWith。在 main

9、函数中给出了一组测试数据,此种情况下程序的输出应为: s1=abcde s2=abc s3=abd s4= s5=abcde s6=abcdef s1 startsWith s2:true s1 startsWith s3:false s1 startsWith s4:true s1 startsWith s5:true s1 startsWith s6:false 要求: 补充编制的内容写在“/*333*”与“/*666*”之间,不得修改程序的其他部分。 注意:程序最后将结果输出到文件 out.dat中。输出函数 writeToFile已经编译为 obj文件,并且在本程序中调用。 /MySt

10、ving.h #include iostream #include string.h using namespace std; class MyString public: MyString(const char* s) size = strlen(s); str = new charsize + 1; strcpy(str, s); MyString() delete str; bool startsWith (const char*s) const; private: char*str; int size; ; void writeToFile(const char *); /main.c

11、pp #include “MyString.h“ bool MyString: startsWith (constchar* s) const /* 333* /* 666* int main() char s1 = “abcde“; char s2 = “abc“; char s3 = “abd“; char s4 = “ “; char s5 = “abcde“; char s6 = “abcdef“; MyString str(s1); cout “s1 = “ s1 endl “s2 = “ s2 endl “s3 = “ s3 endl “s4 = “ s4 endl “s5 = “

12、 s5 endl “s6 = “ s6 endl; cout boolalpha “s1 startsWith s2 : “ str.startsWith(s2) endl “s1 startsWith s3 : “ str.startsWith(s3) endl “s1 startsWith s4 : “ str.startsWith(s4) endl “s1 startsWith s5 : “ str.startsWith(s5) endl “sl startsWith s6 : “ str.startsWith(s6) endl; writeToFile(“); return 0; (分

13、数:40.00)_二级 C+-67答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 proj1下的工程 proj1。此工程定义了 StopWatch(秒表)类,用于表示时、分、秒信息,有构造函数 StopWatch()、设置时间函数 reset(),并且重载了前置和后置+运算符,实现增加 1秒的功能。程序中位于每个“/ERROR *found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应该是: 00:00:00 00:01:00 注意:只修改每个“/ERROR *found*”下

14、的那一行,不要改动程序中的其他内容。 #include iostream #include iomanip using namespace std; class StopWatch /“秒表“类 int hours; /小时 int minutes; /分钟 int seconds; /秒 public: StopWatch(): hours(0), minutes (0), seconds(0) void reset () hours =minutes =seconds =0; StopWatch operator+(int) /后置+ StopWatch old=* this; + (*

15、this); return old; /前进 1秒 StopWatch minutes +; if(minutes =60) minutes =0; hours +; / ERROR * found* return this; friend void show(StopWatch); ; void show (StopWatch watch) cout setfill (0); cout setw(2) watch.hours : setw (2) watch.minutes : setw (2) watch, seconds endl; int main ( ) StopWatch sw;

16、show (sw); for (int i=0; i_正确答案:(1)if(+seconds)=60) (2)return*this; (3)show(+sw);)解析:考点 本题考查 StopWatch类,其中涉及构造函数、运算符重载和成员函数。 解析 (1)主要考查考生对“+”运算符的掌握,结合程序可知,应先使 seconds加 1,再判断是否需要进位,因此为+seconds。 (2)主要考查考生对 this指针的掌握,应返回 this指针指向的类。 (3)主要考查考生对“+”运算符的掌握,判断 sw是要先取值再自加 1还是先自加 1再取值。二、B简单应用题/B(总题数:1,分数:30.0

17、0)2.请使用 VC6或使用答题菜单打开考生文件夹 proj2下的工程 proj2。此工程中定义了一个人员类Person,然后派生出学生类 Student和教授类 Professor。请在横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为: My name is Zhang. my name is Wang and my G.P.A.is 3.88. My name is Li, I have 8 publications 注意:只在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“/*found*”。 #include iostream using

18、 namespace std; class Person public: /* found* _name =NULL; Person (char* s) name = new char strlen (s) +i; strcpy(name, s); Person() if(name!=NULL) delete name; /* found* _Disp() /声明虚函数 cout “My name is“ name “./n“; void setName (char* s) name = new char strlen (s) +i; strcpy (name, s); protected:

19、char* name; ; class Student : public Person public: /* found* Student (char * s, double g)_ void Disp () cout “my name is“ name “andmy G.P.A. is“ gpa “./n“; private: float gpa; ; class Professor : public Person public: void setPubls (int n) publs =n; void Disp () cout “My name is“ name “, Ihave“ pub

20、ls “ publications./n“; private: int publs; ; int main () /* found* _; Person x (“Zhang“); p = p-Disp(); Student y(“Wang“, 3.88); p = p-Disp(); Professor z; z. setName (“Li“); z. setPubls (8); p = p-Disp(); return 0; (分数:30.00)_正确答案:(1)Person() (2)virtual void (3):Person(s),gpa(g) (4)Person*p)解析:考点 本

21、题考查的是 Person类及其派生类 Student类和 Professor类,其中涉及动态数组、构造函数、析构函数、虚函数和成员函数。 解析 (1)主要考查考生对构造函数的掌握情况,构造函数使用成员列表初始化 name。 (2)主要考查考生对虚函数的掌握情况,虚函数使用关键字 virtual,参考派生类中 Disp函数可知函数返回类型为 void。 (3)主要考查考生对构造函数的掌握情况,使用成员列表初始化。(4)主要考查考生对指针的掌握情况,由语句:p= class MyString public: MyString(const char* s) size = strlen(s); str

22、 = new charsize + 1; strcpy(str, s); MyString() delete str; bool startsWith (const char*s) const; private: char*str; int size; ; void writeToFile(const char *); /main.cpp #include “MyString.h“ bool MyString: startsWith (constchar* s) const /* 333* /* 666* int main() char s1 = “abcde“; char s2 = “abc

23、“; char s3 = “abd“; char s4 = “ “; char s5 = “abcde“; char s6 = “abcdef“; MyString str(s1); cout “s1 = “ s1 endl “s2 = “ s2 endl “s3 = “ s3 endl “s4 = “ s4 endl “s5 = “ s5 endl “s6 = “ s6 endl; cout boolalpha “s1 startsWith s2 : “ str.startsWith(s2) endl “s1 startsWith s3 : “ str.startsWith(s3) endl

24、 “s1 startsWith s4 : “ str.startsWith(s4) endl “s1 startsWith s5 : “ str.startsWith(s5) endl “sl startsWith s6 : “ str.startsWith(s6) endl; writeToFile(“); return 0; (分数:40.00)_正确答案:(if(s=NULL) return true; /如果 s等于 NULL,返回 true int len=strlen(s); /把字符串 s的长度赋给 len if(lensize) return false; /如 len大于 size,返回 false for(int i=0; ilen; i+) /i 从 0到 len-1遍历 if(stri!=si) /如果 stri不等于 si return false; /返回 false return true; /否则返回 true)解析:考点 本题考查的是 MyString类,其中涉及动态数组、构造函数、析构函数和 const函数。 解析 主要考查考生对动态数组的掌握情况,根据题目要求知,函数的功能是判断此字符串是否以指定的前缀开始。利用 for循环,逐个字符进行判断,如果满足条件 stri!=si,返回 false,否则返回true。

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

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

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