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

上传人:lawfemale396 文档编号:1324362 上传时间:2019-10-17 格式:DOC 页数:7 大小:34.50KB
下载 相关 举报
【计算机类职业资格】二级C++机试-182及答案解析.doc_第1页
第1页 / 共7页
【计算机类职业资格】二级C++机试-182及答案解析.doc_第2页
第2页 / 共7页
【计算机类职业资格】二级C++机试-182及答案解析.doc_第3页
第3页 / 共7页
【计算机类职业资格】二级C++机试-182及答案解析.doc_第4页
第4页 / 共7页
【计算机类职业资格】二级C++机试-182及答案解析.doc_第5页
第5页 / 共7页
点击查看更多>>
资源描述

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