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

加入VIP,免费下载
 

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

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

下载须知

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

版权提示 | 免责声明

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

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

1、二级 C+机试-182 及答案解析(总分:100.00,做题时间:90 分钟)一、1改错题(总题数:1,分数:33.00)1.使用 VC6 打开考生文件夹下的工程 proj2。此工程包含一个源程序文件 main2.cpp,但该程序运行有问题。请改正 main 函数中的错误。源程序文件 main2.cpp 清单如下:/main2.cpp#include iostreamusing namespace std;class MyClasspublic:MyClass(int m)member=m;MyClass() int GetMember()return member;private:int m

2、ember;MyClass MakeObject(int m)MyClass *pMyClass=new MyClass(m);return *pMyClass;int main ( )int x=7;/*found*/MyClass *myObj=MakeObject(x);/*found*/cout“My object has member“myObj.GetMember()end1;return 0;(分数:33.00)_二、2简单应用题(总题数:1,分数:33.00)2.编写一个函数,用该函数可以统计一个长度为 3 的字符串在另一个字符串中出现的次数。例如,假定输入字符串“the ab

3、cthe they have theren”,子字符串为“the”,则应输出 4。注意:部分源程序在文件 PROC2.CPP 中。请勿改动主函数和其他函数中的任何内容,仅在 fun()的花括号中填入编写的若干语句。部分源程序如下:/PROC2.CPP#include iostreamusing namespace std;#define MAX 100int fun(char *str,char *substr);int main()char strMAX,substr3;int n;cout“Please Input the source String/n“;cinstr;cout“Plea

4、se Input the subString/n“;cinsubstr;n=fun(str, substr);cout“The counter is: “nend1;return 0;int fun(char *str,char *substr)/*(分数:33.00)_三、3综合应用题(总题数:1,分数:34.00)3.使用 VC6 打开考生文件夹下的工程 MyProj2。此工程包含一个源程序文件 MyMain2.cpp,此程序的运行结果为:Derive1s Print() CalledDerive2s Print() called其中定义的类并不完整,按要求完成下列操作,将类的定义补充完整

5、。定义函数 Print()为无值型纯虚函数。请在注释“/*1*”之后添加适当的语句。建立类 Derivel 的构造函数,请在注释“/*2*”之后添加适当的语句。完成类 Derive2 成员函数 Print()的定义。请在注释“/*3*”之后添加适当的语句。定义类 Derivel 的对象指针 d1,类 Derive2 的对象指针 d2。其初始化值分别为 1 和 2。源程序文件 MyMain2cpp 中的程序清单如下:/MyMain2. cpp#include iostreamusing namespace std;class Basepublic:Base(int i)b=i;/* * 1 *

6、*protected:int b;class Derivel: public Basepublic:/* * 2 * *void print ()cout“ Derivels Print() called.“end1;class Derive2 : public Basepublic:Derive2(int i) :Base(i) /* * 3 * *;void fun (Base *obj)obj-Print ();int main ( )/* * 4 * *fun (d1);fun (d2);return 0;(分数:34.00)_二级 C+机试-182 答案解析(总分:100.00,做题

7、时间:90 分钟)一、1改错题(总题数:1,分数:33.00)1.使用 VC6 打开考生文件夹下的工程 proj2。此工程包含一个源程序文件 main2.cpp,但该程序运行有问题。请改正 main 函数中的错误。源程序文件 main2.cpp 清单如下:/main2.cpp#include iostreamusing namespace std;class MyClasspublic:MyClass(int m)member=m;MyClass() int GetMember()return member;private:int member;MyClass MakeObject(int m

8、)MyClass *pMyClass=new MyClass(m);return *pMyClass;int main ( )int x=7;/*found*/MyClass *myObj=MakeObject(x);/*found*/cout“My object has member“myObj.GetMember()end1;return 0;(分数:33.00)_正确答案:(修改后的主函数为:int main()int x=7;MyClass *myObj=cout“My object has member“myObj-GetMember()end1;return 0;)解析:解析 本题

9、考核对象指针的应用。程序中出现了 2 个出错标识符,说明此程序有 2 处错误。第 1 处错误:“MyClass *myObj=MakeObject(x);”。myObj 是对象指针,而函数 MakeObject( )的返回值是类 MyClass 的对象,所以应改为:“MyClass *myObj=”。第 2 处错误:“cout“My Object has member“myObj.GetMember()end1;”。对象指针使用方式有两种:“对象指针名-成员名;”和“(*对象指针名)成员名;”。显然上述语句的对象指针的使用方式是错误的。应改为“cout“My object has member

10、“myObj- GetMember()end1;”, 或者“cout“My Object has member“(*myObj).GetMember()end1;”。二、2简单应用题(总题数:1,分数:33.00)2.编写一个函数,用该函数可以统计一个长度为 3 的字符串在另一个字符串中出现的次数。例如,假定输入字符串“the abcthe they have theren”,子字符串为“the”,则应输出 4。注意:部分源程序在文件 PROC2.CPP 中。请勿改动主函数和其他函数中的任何内容,仅在 fun()的花括号中填入编写的若干语句。部分源程序如下:/PROC2.CPP#include

11、 iostreamusing namespace std;#define MAX 100int fun(char *str,char *substr);int main()char strMAX,substr3;int n;cout“Please Input the source String/n“;cinstr;cout“Please Input the subString/n“;cinsubstr;n=fun(str, substr);cout“The counter is: “nend1;return 0;int fun(char *str,char *substr)/*(分数:33.0

12、0)_正确答案:(实现此函数功能的方式有多种,下面给出其中一种答案:int fun(char *str,char *substr)int n,z;n=0;for (z=0;str z !=/0;z+)if(strz=substr0)return (n);)解析:解析 本题是一道简单应用题。本题主要考核考生对字符串指针或字符串数组的应用能力。函数 fun 的形参为两个字符串的首地址。函数 fun 的功能是统计一个长度为 3 的字符串在另一个字符串中出现的次数。此函数可用一个循环体和 if 语句来实现。在循环体中当遇到第一个字符匹配时,就用 if 判断此后的第2 和第 3 个字符是否相等,若相等则

13、计数器加 1, 否则继续循环。三、3综合应用题(总题数:1,分数:34.00)3.使用 VC6 打开考生文件夹下的工程 MyProj2。此工程包含一个源程序文件 MyMain2.cpp,此程序的运行结果为:Derive1s Print() CalledDerive2s Print() called其中定义的类并不完整,按要求完成下列操作,将类的定义补充完整。定义函数 Print()为无值型纯虚函数。请在注释“/*1*”之后添加适当的语句。建立类 Derivel 的构造函数,请在注释“/*2*”之后添加适当的语句。完成类 Derive2 成员函数 Print()的定义。请在注释“/*3*”之后添

14、加适当的语句。定义类 Derivel 的对象指针 d1,类 Derive2 的对象指针 d2。其初始化值分别为 1 和 2。源程序文件 MyMain2cpp 中的程序清单如下:/MyMain2. cpp#include iostreamusing namespace std;class Basepublic:Base(int i)b=i;/* * 1 * *protected:int b;class Derivel: public Basepublic:/* * 2 * *void print ()cout“ Derivels Print() called.“end1;class Derive

15、2 : public Basepublic:Derive2(int i) :Base(i) /* * 3 * *;void fun (Base *obj)obj-Print ();int main ( )/* * 4 * *fun (d1);fun (d2);return 0;(分数:34.00)_正确答案:(virtual void Print()=0;Derivel(int i):Base(i)void Print()cout“Derive2s Print()called.“end1;Derivel*d=new Derive1(1);Derive2*d2=new Derive2(2)解析:

16、解析 本题是一道综合应用题,考核继承与派生,以及纯虚函数。在第 1 处定义函数 Print()为无值型纯虚函数。根据 C+中无纯虚函数的定义格式可知在第 1 处应填入“virtual void Print()=0;”。在第 2 处建立类 Derivel 的构造函数,其中还要调用基类的构造函数。所以应填入“Derivel(int i):Base(i)”。在第 3 处完成类 Derive2 成员函数 Print()的定义,根据程序的输出可知,此处应填入“void Print()cout“Derive2s Print() called.”end1;。在第 4 处定义类 Derive1 的对象指针 d1,类 Derive2 的对象指针 d2,其初始化值分别为 1 和 2。所以应填入“Derive1 *d=new Derive1(1);Derive2 *d2=new Derive2(2)”。

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