1、国家二级 C+机试(操作题)模拟试卷 303 及答案解析(总分:6.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.使用 VC6 打开考生文件夹下的源程序文件 modi1cpp,但该程序运行时有错,请改正程序中的错误,使该程序的输出结果为: 20,15 15,20 注意:错误的语句在*error*的下面,修改该语句即可。#inCludeiostreamh*error*void Exchangel(int m,int n) int t=m; m=n; n=t;*error*void Exchange2(int m,int n) int t=。m; *m =*n; *n
2、 =t;Void main() int b=2 0; int a=15: Exchangel(a,b); couta,bendl; *error* Exchange2(a,b); couta,bendl;(分数:2.00)_二、简单应用题(总题数:1,分数:2.00)2.使用 VC6 打开考生文件夹下的源程序文件 modi2cpp。请实现函数 fun(double bt,int len)的如下功能: (1)b是一个数组,长度为 len; (2)b0=0,b1=1: (3)bi+2=bi+bi+1; 注意:请勿改动主函数 main 与其他函数中的任何内容,仅在函数 fun 的花括号中填入所编写的
3、若干语句。 #include void fun(double b,int len) void main() double b128; fun(b,128); for(int i=0; ibi ; if(i6=5) std:cout_三、综合应用题(总题数:1,分数:2.00)3.使用 VC6 打开考生文件夹下的源程序文件 modi3cpp,其中定义了用于表示矩形的 CRect 类,但类CRect 的定义并不完整。请按要求完成下列操作,将类 CRect 的定义补充完成。 (1)定义私有数据成员leftPoint、topPoint、rightPoint、bottomPoint,分别用于表示矩形左上
4、角及右下角的点的坐标,它们都是 double 型的数据。请在注释*1*之后添加适当的语句。 (2)完成默认构造函数CRect 的定义,指定缺省实参为 0,都是 double 型的数据。请在注释*2*之后添加适当的语句。 (3)定义函数体为空的析构函数。请在注释*3*之后添加适当的语句。 (4)在main()函数中定义 CRect 类的实例 rect2,并把 rect1 的值赋给 rect2。请在注释*4*之后添加适当的语句。 注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。#includeiostreamhClass CRectprivate: *1*public: *2* *3*
5、 void SetPoints(double,double,double,double); Void SetLeftPoint(double m)leftPoint=m;) vold SetRightPoint(double m)rightPoint=m;) void SetTopPoint(double m)topPoint=m; Void SetBottomPoint(double m) bottomPoint=m;) void Display();CRect:CRect(double 1,doublet,double r,double b) leftPoint=1;topPoint=t;
6、 rightPoint=r;bottomPoint=b;void CRect:SetPoints(double1,double t,double r,double b) leftPoint=1;topPoint=t; rightPoint=r;bottomPoint=b; void CRect:Display() cout“1eft-top point is(“leftPoint“,“topPoint“)“n; cout“right-bottom point is(“rightPoint“,“bottomPoint“)“n;void main() CRect rect0; rect0Displ
7、ay(); rectoSetPoints(20,206,30,40); rect0Display(); CRect rectl(0,0,150,150); rectlSetTopPoint(105); rectlSetLeftPoint(105); *4* rect2Display();(分数:2.00)_国家二级 C+机试(操作题)模拟试卷 303 答案解析(总分:6.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.使用 VC6 打开考生文件夹下的源程序文件 modi1cpp,但该程序运行时有错,请改正程序中的错误,使该程序的输出结果为: 20,15 15,20
8、注意:错误的语句在*error*的下面,修改该语句即可。#inCludeiostreamh*error*void Exchangel(int m,int n) int t=m; m=n; n=t;*error*void Exchange2(int m,int n) int t=。m; *m =*n; *n =t;Void main() int b=2 0; int a=15: Exchangel(a,b); couta,bendl; *error* Exchange2(a,b); couta,bendl;(分数:2.00)_正确答案:(正确答案:(1)Void Exchangel(intm,i
9、ntn) (2)void Exchange2(int*m,int*n) (3)Exchange2(a,b);)解析:解析:(1)由程序的运行结果可知,分别调用 Exchangel()Exchange20 后,a 和 b 的值两次发生交换,因此 Exchangel0数和 Exchange2()数均为实现交换的函数。参数传递方式有多种,将变量名作为实参和形参、传递变量的指针和传送引用方式,将变量名作为实参和形参方式,这种传递是单向的,在函数执行过程中形参的值发生变化不会传回实参,而指针和引用方式在函数执行过程中形参会影响实参。显然这里不是采用变量名作为实参和形参的单向传递方式,而是采用的传地址或传
10、引用的方式,在Exchangel()体内没有出现指针运算符“*”,因此可知 Exchangel()函数是采用的传引用的方式,因此第1 个标识下应改为“void Exchangel(intm,intn)”。 (2)由 1 分析可知,Exchange2()函数内有指针运算符“*”,可知其是采用的传指针的方式作为参数传递,因此第 2 个标识下应改为“void Exchange2(int*m,int*n)”。 (3)Exchange2()参数为 int 型数据指针,因此调用 Exchange20 时应传入指针而不是变量名,故第 3 个标识下应改为“Exchange2(a,b);”。二、简单应用题(总题
11、数:1,分数:2.00)2.使用 VC6 打开考生文件夹下的源程序文件 modi2cpp。请实现函数 fun(double bt,int len)的如下功能: (1)b是一个数组,长度为 len; (2)b0=0,b1=1: (3)bi+2=bi+bi+1; 注意:请勿改动主函数 main 与其他函数中的任何内容,仅在函数 fun 的花括号中填入所编写的若干语句。 #include void fun(double b,int len) void main() double b128; fun(b,128); for(int i=0; ibi ; if(i6=5) std:cout_正确答案:(
12、正确答案:if(len0)最小值位置 b0=0; 赋值第一个元素 if(len1) b1=l; 赋值第二个元素 for(int i=2; ilen;i+) bi=bi-1+bi-2;将两个元素之和赋予当前元素)解析:解析:(1)判断数组长度,如果存在第一个元素,那么将第一个元素赋值为 0,即 b0=0;。 (2)然后再判断数组长度,如果存在第二个元素,那么将第二个元素赋值为 1,即 b1=1;。 (3)最后从第三个元素到数组最后一个元素,赋值 bi=bi-1+bi-2;。三、综合应用题(总题数:1,分数:2.00)3.使用 VC6 打开考生文件夹下的源程序文件 modi3cpp,其中定义了用于
13、表示矩形的 CRect 类,但类CRect 的定义并不完整。请按要求完成下列操作,将类 CRect 的定义补充完成。 (1)定义私有数据成员leftPoint、topPoint、rightPoint、bottomPoint,分别用于表示矩形左上角及右下角的点的坐标,它们都是 double 型的数据。请在注释*1*之后添加适当的语句。 (2)完成默认构造函数CRect 的定义,指定缺省实参为 0,都是 double 型的数据。请在注释*2*之后添加适当的语句。 (3)定义函数体为空的析构函数。请在注释*3*之后添加适当的语句。 (4)在main()函数中定义 CRect 类的实例 rect2,并
14、把 rect1 的值赋给 rect2。请在注释*4*之后添加适当的语句。 注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。#includeiostreamhClass CRectprivate: *1*public: *2* *3* void SetPoints(double,double,double,double); Void SetLeftPoint(double m)leftPoint=m;) vold SetRightPoint(double m)rightPoint=m;) void SetTopPoint(double m)topPoint=m; Void SetBo
15、ttomPoint(double m) bottomPoint=m;) void Display();CRect:CRect(double 1,doublet,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;bottomPoint=b; void CRect:Display() cout“1eft-top point
16、is(“leftPoint“,“topPoint“)“n; cout“right-bottom point is(“rightPoint“,“bottomPoint“)“n;void main() CRect rect0; rect0Display(); rectoSetPoints(20,206,30,40); rect0Display(); CRect rectl(0,0,150,150); rectlSetTopPoint(105); rectlSetLeftPoint(105); *4* rect2Display();(分数:2.00)_正确答案:(正确答案:(1)添加语句:doubl
17、e 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 个标识下完成私有数据成员 leftPoint、topPoint、rightPoint、bottomPoint 的定义,均为 double 型的变量,故第 1 个标识下应添加“doublelefiPoint,
18、topPoint,rightPoint,bottomPoint;”。 (2)构造函数完成成员变量的初始化,类 CRect 的默认构造函数并初始化 double 型私有数据成员lefiPoint、topPoint、rightPoint、bottomPoint 为 0,故第 2 个标识下应添加“CRect(double leftPoint=0,double topPoint=0,double rightPoint=0,double bottomPoint=0);”。 (3)析构函数名和类名一致,并在前面加“”以和构造函数区别,该析构函数体为空,故第 3 个标识下应添加“CRect();”,虽然该函数体为空,但是“”必须保留。 (4)主函数中类 CRect 的对象 rect2 是通过复制构造函数将 rect1 的值赋值给它实现初始化的,而 rect1 的初始化直接调用自定义构造函数,第4 个标识下应添加“CRect rect2(rect1);”。