ImageVerifierCode 换一换
格式:DOC , 页数:4 ,大小:42.50KB ,
资源ID:1324123      下载积分:5000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
注意:如需开发票,请勿充值!
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-1324123.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(【计算机类职业资格】二级C++-67及答案解析.doc)为本站会员(twoload295)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

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

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