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

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

1、二级 C+机试-180 及答案解析(总分:100.00,做题时间:90 分钟)一、1改错题(总题数:1,分数:33.00)1.使用 VC6 打开考生文件夹下的工程 RevProj4。此工程包含一个源程序文件 RevMain4.cpp,但该程序运行有问题。请改正主函数中的错误,使之输出结果为:x=20源程序文件 RevMain4.cpp 的清单如下:/RevMain4.cpp#includeiostreamusing namespace std;class MyClasspublic:MyClass(int a)x=a;void setX(int a)x=a;void print()cout“x

2、=“x;private:int x;int main()const MyClass obj (10);/ *found*/obj.setX(20);/ *found*/obj.print();return 0;(分数:33.00)_二、2简单应用题(总题数:1,分数:33.00)2.请编写一个函数 resort,该函数的功能是:能在一个数列中,对从指定位置开始的几个数,按相反顺序重新排列,并在主函数中输出新的数列。注意:部分源程序已存在文件 PROC4.cpp 中。请勿修改主函数和其他函数中的任何内容,仅在函数 reson()的花括号中填写若干语句。文件 PROC4.cpp 的内容如下:/PR

3、OC4.cpp#includeiostreamusing namespace std;void resort(int array,int where,int arrount);int main()int number20,where, arrount,i;cout“input 20 numbers/n“;for(i=0;i20;i+)cinnumberi;cout“how many do you want to sort:“;cinarrount;cout“where do you want to start:“;cinwhere;resort(number,where,arrount);co

4、ut“/n resorted array as follow:/n“;for(i=0;i20;i+)coutnumberi;return 0;void resort(int array ,int where,int amount)/*/(分数:33.00)_三、3综合应用题(总题数:1,分数:34.00)3.使用 VC6 打开考生文件夹下的工程 MyProj4。此工程包含一个源程序文件 MyMain4.cpp,该程序将通过把类 Distance 定义为类 Point 的友元类来实现计算两点之间距离的功能。但程序中定义的类并不完整。请按要求完成下列操作,把类的定义补充完整。把类 Distance

5、 定义为类 Point 的友元类。请在注释“/*1*”之后添加适当的语句。定义类 Point 的构造函数,完成给私有数据成员 x 和 y 的赋值,并且两个参数的默认值都为 0。请在注释“/*2*”之后添加适当的语句。完成类 Distance 的成员函数 Dis(Point class Pointpublic:/ /* * 1 * */ /定义类 Point 的构造函数/ /* * 2 * *void pint()cout“x=“xend1;cout“y=“yend1;private:float x,y;class Distancepublic:float Dis(Point ;float Di

6、stance : Dis(Point Distance d;coutd.Dis(p,q)end1;return 0;(分数:34.00)_二级 C+机试-180 答案解析(总分:100.00,做题时间:90 分钟)一、1改错题(总题数:1,分数:33.00)1.使用 VC6 打开考生文件夹下的工程 RevProj4。此工程包含一个源程序文件 RevMain4.cpp,但该程序运行有问题。请改正主函数中的错误,使之输出结果为:x=20源程序文件 RevMain4.cpp 的清单如下:/RevMain4.cpp#includeiostreamusing namespace std;class My

7、Classpublic:MyClass(int a)x=a;void setX(int a)x=a;void print()cout“x=“x;private:int x;int main()const MyClass obj (10);/ *found*/obj.setX(20);/ *found*/obj.print();return 0;(分数:33.00)_正确答案:(修改程序时可以去掉类对象定义时的 const 关键词。即:int main ( )MyClass obj (10);obj.setX(20);obj.print ();return 0;)解析:解析 程序中出现了 2 个

8、出错标识符,说明此程序有 2 处错误。第 1 处错误:语句“obj.setX(20);”错误。因为类 MyClass 的对象 obj 被声明为常对象,因此,不允许修改常对象的成员变量。第 2 处错误:语句“obj.print();”错误。因为类的对象被声明为常对象,因此,不是常成员函数就不能访问常对象的成员变量。虽然成员函数 print()中没有修改类的对象,但是它存在修改类的成员变量的可能性。二、2简单应用题(总题数:1,分数:33.00)2.请编写一个函数 resort,该函数的功能是:能在一个数列中,对从指定位置开始的几个数,按相反顺序重新排列,并在主函数中输出新的数列。注意:部分源程序

9、已存在文件 PROC4.cpp 中。请勿修改主函数和其他函数中的任何内容,仅在函数 reson()的花括号中填写若干语句。文件 PROC4.cpp 的内容如下:/PROC4.cpp#includeiostreamusing namespace std;void resort(int array,int where,int arrount);int main()int number20,where, arrount,i;cout“input 20 numbers/n“;for(i=0;i20;i+)cinnumberi;cout“how many do you want to sort:“;ci

10、narrount;cout“where do you want to start:“;cinwhere;resort(number,where,arrount);cout“/n resorted array as follow:/n“;for(i=0;i20;i+)coutnumberi;return 0;void resort(int array ,int where,int amount)/*/(分数:33.00)_正确答案:(下面是函数 resort 的函数体实现:void resort(int array ,int where,int amount)int *p1,*p2,temp;p

11、1=p2=for(;p1p1+,p2-)temp=*p1;*p1=*p2;*p2=temp;)解析:解析 函数 resort 的主要功能是将指定的几个数据按原顺序相反的顺序重新排列。可以采用循环加数组的方式实现。三、3综合应用题(总题数:1,分数:34.00)3.使用 VC6 打开考生文件夹下的工程 MyProj4。此工程包含一个源程序文件 MyMain4.cpp,该程序将通过把类 Distance 定义为类 Point 的友元类来实现计算两点之间距离的功能。但程序中定义的类并不完整。请按要求完成下列操作,把类的定义补充完整。把类 Distance 定义为类 Point 的友元类。请在注释“/

12、*1*”之后添加适当的语句。定义类 Point 的构造函数,完成给私有数据成员 x 和 y 的赋值,并且两个参数的默认值都为 0。请在注释“/*2*”之后添加适当的语句。完成类 Distance 的成员函数 Dis(Point class Pointpublic:/ /* * 1 * */ /定义类 Point 的构造函数/ /* * 2 * *void pint()cout“x=“xend1;cout“y=“yend1;private:float x,y;class Distancepublic:float Dis(Point ;float Distance : Dis(Point Dist

13、ance d;coutd.Dis(p,q)end1;return 0;(分数:34.00)_正确答案:(类 Point 的定义如下:class Pointpublic:friend class Distance;Point (float a=0, float b=0)x=a;y=b;void pint()cout“x=“xend1;cout“y=“yend1;private:float x,y;)解析:解析 此道综合应用题主要考核友元类的定义与使用。第 1 处是完成友元类的声明,根据友元类的声明格式已知此处可填入:friend class Distance;第 2 处是完成类 Point 的构造函数,此处还要注意类 Point 的构造函数中还应该有参数默认值。此处应填入:Point(float a=0,float b=0)x=a;y=b第 3 处是完成类 Distance 成员函数 Dis()的定义,函数 Dis()的功能是计算两点之间的距离。根据题目给出的计算公式,已知第 3 处应填入:float result;result=sqrt(p.x-q.x)*(p.x-q.x)+(p.y-q.y)*(p.y-q.y);return result;

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

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

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