【计算机类职业资格】国家二级C++机试(操作题)-试卷80及答案解析.doc

上传人:lawfemale396 文档编号:1331772 上传时间:2019-10-17 格式:DOC 页数:3 大小:36KB
下载 相关 举报
【计算机类职业资格】国家二级C++机试(操作题)-试卷80及答案解析.doc_第1页
第1页 / 共3页
【计算机类职业资格】国家二级C++机试(操作题)-试卷80及答案解析.doc_第2页
第2页 / 共3页
【计算机类职业资格】国家二级C++机试(操作题)-试卷80及答案解析.doc_第3页
第3页 / 共3页
亲,该文档总共3页,全部预览完了,如果喜欢就下载吧!
资源描述

1、国家二级 C+机试(操作题)-试卷 80 及答案解析(总分:6.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.使用 VC6 打开考生文件夹下的源程序文件 modi1cpp,但该程序运行时有错,请改正程序中的错误,使程序输出的结果为:m=-10n=-10p=0q=-10z=A 注意:错误的语句在*error*的下面,修改该语句即可。#includeiostreamhvoid main()double m=10;float n=10;bool p=1;int q=10;char z=a;m=-m;*error*n=n;*error*p=-p;*error*q=q;z=

2、z-32;cout“m=“mendl;cout“n=“nendl;cout“p=“pendl;cout“q=“qendl;cout“z=“zendl;return;(分数:2.00)_二、简单应用题(总题数:1,分数:2.00)2.使用 VC6 打开考生文件夹下的源程序文件 modi2cpp。阅读下列函数说明和代码,补充空出的代码。程序的功能是寻找 1500 以内的亲和数并显示出来,函数 amicableNum(int m,int n)判定两个数是否是亲和数。亲和数的定义为:两个数 m 和 n,如果 n 的所有因子之和(因子除掉自身)等于 m,且 m 的所有因子等于 n,则 m、n 是互为亲和

3、数。注意:不能修改程序的其他部分,只能补充 amicableNum(int m,int n)函数。#includeiostreamhint amicableNum(int n)int sum=0;for(int i=1;in;i+)if(ni=0)sum+=i;return sum;bool amicableNum(int m,int n)void main()cout“1500 以内的亲和数有:“endl;for(int i=1;i500;i+)for(int j=i+1;j500;j+)if(i!=j)if(amicableNum(i,j)=1)couti jendl;return;(分数

4、:2.00)_三、综合应用题(总题数:1,分数:2.00)3.使用 VC6 打开考生文件夹下的源程序文件 modi3cpp,其中定义了用于表示矩形的 CRect 类,但类CRect 的定义并不完整。请按要求完成下列操作,将类 CRect 的定义补充完成。(1)定义私有数据成员lefiPoint、topPoint、rightPoint、bottomPoint,分别用于表示矩形左上角及右下角的点的坐标,它们都是 double 型的数据。请在注释*1*之后添加适当的语句。(2)完成默认构造函数CRect 的定义,指定缺省实参为 0,都是 double 型的数据。请在注释*2*之后添加适当的语句。(3

5、)定义函数体为空的析构函数。请在注释*3*之后添加适当的语句。(4)在 main()函数中定义 CRect 类的实例 rect2,并把 rectl 的值赋给 rect2。请在注释*4*之后添加适当的语句。注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。#includeiostreamhclass CRectprivate:*1*public:*2*3*void SetPoints(double,double,double,double);void SetLeftPoint(double m)leftPoint=m;void SetRightpoint(double m)rightP

6、oint=m;void SetToppoint(double m)topPoint=m;void SetBottomPoint(doublem)bottomPoint=m;void Display();CRect:CRect(double1,double t,double r,double b)leftPoint=1;topPoint=t;rightPoint=r;bottomPoint=b;void CRect:SetPoints(double1,double t,double r,double b)leftPoint=1;topPoint=t;rightPoint=r;bottomPoin

7、t=b;void CRect:Display()cout“left-top point is(“leftPoint“,“topPoint“)“n;cout“right-bottom point is(“rightPoint“,“bottomPoint(“)“n;void main()CRect rect0;rect0Display();rect0SetPoints(20,206,30,40);rect0Display();CRect rectl(0,0,150,150);rectlSetTopPoint(105);rectlSetLeftPoint(105);*4*rect2Display()

8、;(分数:2.00)_国家二级 C+机试(操作题)-试卷 80 答案解析(总分:6.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.使用 VC6 打开考生文件夹下的源程序文件 modi1cpp,但该程序运行时有错,请改正程序中的错误,使程序输出的结果为:m=-10n=-10p=0q=-10z=A 注意:错误的语句在*error*的下面,修改该语句即可。#includeiostreamhvoid main()double m=10;float n=10;bool p=1;int q=10;char z=a;m=-m;*error*n=n;*error*p=-p;*er

9、ror*q=q;z=z-32;cout“m=“mendl;cout“n=“nendl;cout“p=“pendl;cout“q=“qendl;cout“z=“zendl;return;(分数:2.00)_正确答案:(正确答案:(1)n=-n; (2)p=!p; (3)q=-q;)解析:解析:(1)程序中定义了多个变量,并做了一些基本的运算处理。 (2)由题目要求的运行结果可知,第 1 个标识下和第 3 个标识下是对变量 n 和 q 取反,求。个正数的相反数可以通过算数运算符“-”得到,第 1 个标识下和第 3 个标识下应分别改为“n=-n;”和“q=-q;”,即只需要通过负号运算就可以实现。

10、(3)从题目要求输出的结果来分析,第 2 标识下是对逻辑变量 p 取反,对一个逻辑变量求反应该用取反运算符“!”,第 2 个标识下应改为“p=!p”。二、简单应用题(总题数:1,分数:2.00)2.使用 VC6 打开考生文件夹下的源程序文件 modi2cpp。阅读下列函数说明和代码,补充空出的代码。程序的功能是寻找 1500 以内的亲和数并显示出来,函数 amicableNum(int m,int n)判定两个数是否是亲和数。亲和数的定义为:两个数 m 和 n,如果 n 的所有因子之和(因子除掉自身)等于 m,且 m 的所有因子等于 n,则 m、n 是互为亲和数。注意:不能修改程序的其他部分,

11、只能补充 amicableNum(int m,int n)函数。#includeiostreamhint amicableNum(int n)int sum=0;for(int i=1;in;i+)if(ni=0)sum+=i;return sum;bool amicableNum(int m,int n)void main()cout“1500 以内的亲和数有:“endl;for(int i=1;i500;i+)for(int j=i+1;j500;j+)if(i!=j)if(amicableNum(i,j)=1)couti jendl;return;(分数:2.00)_正确答案:(正确答案

12、:if(amicableNUm(m)=n &amicableNum(n)=m) return1; return0;)解析:解析:(1)程序中定义了两个 amicableNum()函数,由于参数个数不同重载了 amicableNum()函数,函数 amicableNum(int n)返回 n 的因子和,而函数 amicableNum(int m,int n)则是判断 m 和 n 是不是亲和数,两个函数功能并不相同。 (2)在 amicableNum(int m,int n)函数中,可调用 amicableNum(int n)函数求 m 和 n 的因子和,然后比较两个因子和,如果两个因子和相同则返

13、回真,否则返回假。三、综合应用题(总题数:1,分数:2.00)3.使用 VC6 打开考生文件夹下的源程序文件 modi3cpp,其中定义了用于表示矩形的 CRect 类,但类CRect 的定义并不完整。请按要求完成下列操作,将类 CRect 的定义补充完成。(1)定义私有数据成员lefiPoint、topPoint、rightPoint、bottomPoint,分别用于表示矩形左上角及右下角的点的坐标,它们都是 double 型的数据。请在注释*1*之后添加适当的语句。(2)完成默认构造函数CRect 的定义,指定缺省实参为 0,都是 double 型的数据。请在注释*2*之后添加适当的语句。

14、(3)定义函数体为空的析构函数。请在注释*3*之后添加适当的语句。(4)在 main()函数中定义 CRect 类的实例 rect2,并把 rectl 的值赋给 rect2。请在注释*4*之后添加适当的语句。注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。#includeiostreamhclass CRectprivate:*1*public:*2*3*void SetPoints(double,double,double,double);void SetLeftPoint(double m)leftPoint=m;void SetRightpoint(double m)righ

15、tPoint=m;void SetToppoint(double m)topPoint=m;void SetBottomPoint(doublem)bottomPoint=m;void Display();CRect:CRect(double1,double t,double r,double b)leftPoint=1;topPoint=t;rightPoint=r;bottomPoint=b;void CRect:SetPoints(double1,double t,double r,double b)leftPoint=1;topPoint=t;rightPoint=r;bottomPo

16、int=b;void CRect:Display()cout“left-top point is(“leftPoint“,“topPoint“)“n;cout“right-bottom point is(“rightPoint“,“bottomPoint(“)“n;void main()CRect rect0;rect0Display();rect0SetPoints(20,206,30,40);rect0Display();CRect rectl(0,0,150,150);rectlSetTopPoint(105);rectlSetLeftPoint(105);*4*rect2Display

17、();(分数:2.00)_正确答案:(正确答案:(1)添加语句:double leftPoint,topPoint,rightpoint,bottomPoint; (2)添加语句:CRect(double leftPoint=0,double topPoint=0,double rightPoint=0,double bottomPoint=0); (3)添加语句:CRect(); (4)添加语句:CRect rect2(rect1);)解析:解析:(1)第 1 个标识下完成私有数据成员 lefiPoint、topPoint、rightPoint、bottomPoint 的定义,均为 doub

18、le 型的变量,故第 1 个标识下应添加“double leftPoint,topPoint,rightPoint,bottomPoint;”。 (2)构造函数完成成员变量的初始化,类 CRect的默认构造函数并初始化 double 型私有数据成员 leftPoint、topPoint、rightPoint、bottomPoint 为0,故第 2 个标识下应添加“CRect(double lettPoint=0,doubletopPoint=0,double rightPoint=0,double bottomPoint=0);”。 (3)析构函数名和类名一致,并在前面加“”以和构造函数区别,该析构函数体为空,故第 3 个标识下应添加“CRect();”,虽然该函数体为空,但是“”必须保留。 (4)主函数中类 CRect 的对象 rect2 是通过复制构造函数将 rect1 的值赋值给它实现初始化的,而 rect1 的初始化直接调用自定义构造函数,第 4 个标识下应添加“CRectrect2(rect1);”。

展开阅读全文
相关资源
猜你喜欢
  • ETSI TR 101 615-1998 Network Aspects (NA) Services and Networks Architecture Evolution for Telecommunications (V1 1 1)《网络方面(NA) 通信业务及其网络体系的发展(版本1 1 1)》.pdf ETSI TR 101 615-1998 Network Aspects (NA) Services and Networks Architecture Evolution for Telecommunications (V1 1 1)《网络方面(NA) 通信业务及其网络体系的发展(版本1 1 1)》.pdf
  • ETSI TR 101 616-1998 Network Aspects (NA) Intelligent Network (IN) Feasibility of Standardization of Aspects of Service Creation Environment (SCE) Output to Network Elements Via th.pdf ETSI TR 101 616-1998 Network Aspects (NA) Intelligent Network (IN) Feasibility of Standardization of Aspects of Service Creation Environment (SCE) Output to Network Elements Via th.pdf
  • ETSI TR 101 616-1998 Network Aspects (NA) Intelligent Network (IN) Feasibility of Standardization of Aspects of Service Creation Environment (SCE) Output to Network Elements Via th网.pdf ETSI TR 101 616-1998 Network Aspects (NA) Intelligent Network (IN) Feasibility of Standardization of Aspects of Service Creation Environment (SCE) Output to Network Elements Via th网.pdf
  • ETSI TR 101 617-1998 Network Aspects (NA) Considerations on Network Mechanisms for Charging and Revenue Accounting for European Telephony Numbering Space (ETNS) Services (V1 1 1)《网.pdf ETSI TR 101 617-1998 Network Aspects (NA) Considerations on Network Mechanisms for Charging and Revenue Accounting for European Telephony Numbering Space (ETNS) Services (V1 1 1)《网.pdf
  • ETSI TR 101 617-1998 Network Aspects (NA) Considerations on Network Mechanisms for Charging and Revenue Accounting for European Telephony Numbering Space (ETNS) Services (V1 1 1)《网_1.pdf ETSI TR 101 617-1998 Network Aspects (NA) Considerations on Network Mechanisms for Charging and Revenue Accounting for European Telephony Numbering Space (ETNS) Services (V1 1 1)《网_1.pdf
  • ETSI TR 101 618-1998 Network Aspects (NA) Number Portability Task Force (NPTF) Working Package 8 Location Portability (V1 1 1)《网络方面(NA) 号码可携性任务组(NPTF) 工作包8 位置的可移动性(版本1 1 1)》.pdf ETSI TR 101 618-1998 Network Aspects (NA) Number Portability Task Force (NPTF) Working Package 8 Location Portability (V1 1 1)《网络方面(NA) 号码可携性任务组(NPTF) 工作包8 位置的可移动性(版本1 1 1)》.pdf
  • ETSI TR 101 619-1998 Network Aspects (NA) Considerations on Network Mechanisms for Charging and Revenue Accounting (V1 1 1)《网络方面(NA) 对计费和收入结算网络机制的考虑(版本1 1 1)》.pdf ETSI TR 101 619-1998 Network Aspects (NA) Considerations on Network Mechanisms for Charging and Revenue Accounting (V1 1 1)《网络方面(NA) 对计费和收入结算网络机制的考虑(版本1 1 1)》.pdf
  • ETSI TR 101 631-2000 Digital Cellular Telecommunications System (Phase 2+) Technical Performance Objectives (GSM 03 05 Version 8 0 0 Release 1999)《数字蜂窝通信系统(第2+阶段) 技术性能目标GSM 03 05(版.pdf ETSI TR 101 631-2000 Digital Cellular Telecommunications System (Phase 2+) Technical Performance Objectives (GSM 03 05 Version 8 0 0 Release 1999)《数字蜂窝通信系统(第2+阶段) 技术性能目标GSM 03 05(版.pdf
  • ETSI TR 101 631-2000 Digital Cellular Telecommunications System (Phase 2+) Technical Performance Objectives (GSM 03 05 Version 8 0 0 Release 1999)《数字蜂窝通信系统(第2+阶段) 技术性能目标GSM 03 05(版_1.pdf ETSI TR 101 631-2000 Digital Cellular Telecommunications System (Phase 2+) Technical Performance Objectives (GSM 03 05 Version 8 0 0 Release 1999)《数字蜂窝通信系统(第2+阶段) 技术性能目标GSM 03 05(版_1.pdf
  • 相关搜索

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

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