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

加入VIP,免费下载
 

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

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

下载须知

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

版权提示 | 免责声明

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

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

1、二级 C+-62及答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 proj1下的工程 proj1,其中有矩形类 Rectangle、函数show和主函数 main的定义。程序中位于每个“/ERROR *found*”下一行的语句有错误,请加以改正。改正后程序的输出结果应该是: Upper left=(1,8),down right=(5,2),area=24 注意:只修改每个“/ERROR *found*”下的那一行,不要改动程序中的其他内容。 #include iostream #incl

2、ude cmath using namespace std; class Rectangle double x1, y1; /左上角坐标 double x2, y2; /右下角坐标 public: / ERROR * found* Rectangle (double x1, y1; double x2, y2) this -x1=x1; this -y1=y1; this -x2=x2; this -y2=y2; double getX1 ()const return x1; double getY1 ()const return y1; double getX2 ()const return

3、 x2; double getY2 ()const return y2; double getHeight () const return fabs(y1-y2); double getWidth () const return fabs(x1-x2); double area () const return getH-eight()* getWidth(); ; / ERROR * found* void show(Rectangle r)const cout “Upper left = (“; / ERROR * found* cout r.x1 “, “ r.y1 “), down ri

4、ght = (“ r.x2 “, “ r.y2; cout “), area =“ r. area () “. “ endl; int main() Rectangle r1 (1, 8, 5, 2); show(r1); return 0; (分数:30.00)_二、B简单应用题/B(总题数:1,分数:30.00)2.请使用 VC6或使用答题菜单打开考生文件夹 proj2下的工程 proj2,此工程中包含一个源程序文件main.cpp,其中有坐标点类 Point、线段类 Line和矩形类 Rectangle的定义,还有 main函数的定义。程序中两点间的距离的计算是按公式 (分数:30.00

5、)_三、B综合应用题/B(总题数:1,分数:40.00)3.请使用答题菜单命令或直接用 VC6打开考生文件夹下的工程 proj3,其中声明了一个人员信息类Person。在 Person类中数据成员 name、age 和 address分别存放人员的姓名、年龄和地址。构造函数Person用以初始化数据成员。补充编制程序,使其功能完整。在 main函数中分别创建了两个 Person类对象 p1和 p2,并显示两个对象信息,此种情况下程序的输出应为: Jane 25 Beijing Tom 22 Shanghai 注意:只能在函数 Person中的“/*333*”和“/*666*”之间填入若干语句,

6、不要改动程序中的其他内容。 /proj3.h #include iostream #include string using namespace std; class Person public: char name20; int age; char* address; public: Person (char* name, int_age,char*_add =NULL); /构造函数 void info_display (); /人员信息显示 Person (); /析构函数 ; void writeToFile (const char * path=“); /proj3.cpp #inc

7、lude iostream #include string #include “proj3.h“ using namespace std; Person:Person (char*_name, int_age, char* _add) :age (_age) /把字符串_name 复制到数组 name中 /使address指向一个动态空间,把字符串_add 复制到该数组中。 /* 333* /* 666* void Person:info_display () cout name /t age /t; if (address!=NULL) cout address endl; Person:

8、Person () if (address !=NULL) delete address; void main () char add100; strcpy(add, “Beijing“) ; Person p1 (“Jane“, 25, add) ; p1.info_display () ; strcpy(add, “Shanghai“); Person * p2 =new Person (“Tom“, 22, add); p2 - info_display () ; delete p2; writeToFile (“); (分数:40.00)_二级 C+-62答案解析(总分:100.00,

9、做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 proj1下的工程 proj1,其中有矩形类 Rectangle、函数show和主函数 main的定义。程序中位于每个“/ERROR *found*”下一行的语句有错误,请加以改正。改正后程序的输出结果应该是: Upper left=(1,8),down right=(5,2),area=24 注意:只修改每个“/ERROR *found*”下的那一行,不要改动程序中的其他内容。 #include iostream #include cmath using namespac

10、e std; class Rectangle double x1, y1; /左上角坐标 double x2, y2; /右下角坐标 public: / ERROR * found* Rectangle (double x1, y1; double x2, y2) this -x1=x1; this -y1=y1; this -x2=x2; this -y2=y2; double getX1 ()const return x1; double getY1 ()const return y1; double getX2 ()const return x2; double getY2 ()cons

11、t return y2; double getHeight () const return fabs(y1-y2); double getWidth () const return fabs(x1-x2); double area () const return getH-eight()* getWidth(); ; / ERROR * found* void show(Rectangle r)const cout “Upper left = (“; / ERROR * found* cout r.x1 “, “ r.y1 “), down right = (“ r.x2 “, “ r.y2;

12、 cout “), area =“ r. area () “. “ endl; int main() Rectangle r1 (1, 8, 5, 2); show(r1); return 0; (分数:30.00)_正确答案:(1)Rectangle(double x1, double y1, double x2, double y2) (2)void show(Rectangle r) (3)coutr.getX1()“, “r.getY1()“), down right=(“r.getX2()“, “r.getY2();)解析:考点 本题考查 Rectangle类,其中涉及构造函数和 c

13、onst函数。 解析 (1)主要考查考生对构造函数的掌握,函数的参数要使用“,”隔开,不能使用“;”。 (2)主要考查考生对 const函数的掌握,程序中调用函数 r.area(),该函数修改了成员值,因此不能使用 const。 (3)主要考查考生对成员函数的掌握,类外函数不能直接调用类的私有成员,只能通过成员函数调用。二、B简单应用题/B(总题数:1,分数:30.00)2.请使用 VC6或使用答题菜单打开考生文件夹 proj2下的工程 proj2,此工程中包含一个源程序文件main.cpp,其中有坐标点类 Point、线段类 Line和矩形类 Rectangle的定义,还有 main函数的定

14、义。程序中两点间的距离的计算是按公式 (分数:30.00)_正确答案:(1)const.Point class Person public: char name20; int age; char* address; public: Person (char* name, int_age,char*_add =NULL); /构造函数 void info_display (); /人员信息显示 Person (); /析构函数 ; void writeToFile (const char * path=“); /proj3.cpp #include iostream #include strin

15、g #include “proj3.h“ using namespace std; Person:Person (char*_name, int_age, char* _add) :age (_age) /把字符串_name 复制到数组 name中 /使address指向一个动态空间,把字符串_add 复制到该数组中。 /* 333* /* 666* void Person:info_display () cout name /t age /t; if (address!=NULL) cout address endl; Person: Person () if (address !=NULL

16、) delete address; void main () char add100; strcpy(add, “Beijing“) ; Person p1 (“Jane“, 25, add) ; p1.info_display () ; strcpy(add, “Shanghai“); Person * p2 =new Person (“Tom“, 22, add); p2 - info_display () ; delete p2; writeToFile (“); (分数:40.00)_正确答案:(strcpy(name, _name); /把 name中的内容复制到 name中 address =new charstrlen(add) +1; /动态给 address分配 strlen(-add)+1大小的空间 strcpy(address, _add); /把 add中的内容复制到 address中)解析:考点 本题考查 Person类,其中涉及数组、构造函数、成员函数和析构函数。 解析 主要考查考生对构造函数的掌握,根据题目要求,首先使用 strcpy()函数把字符串_name 复制到数组 name中,然后使用 new语句分配一个动态空间,使 address指向空间首地址,最后把字符串_add 复制到该数组中。

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