[计算机类试卷]国家二级(C++)机试模拟试卷33及答案与解析.doc

上传人:周芸 文档编号:502481 上传时间:2018-11-29 格式:DOC 页数:6 大小:30.50KB
下载 相关 举报
[计算机类试卷]国家二级(C++)机试模拟试卷33及答案与解析.doc_第1页
第1页 / 共6页
[计算机类试卷]国家二级(C++)机试模拟试卷33及答案与解析.doc_第2页
第2页 / 共6页
[计算机类试卷]国家二级(C++)机试模拟试卷33及答案与解析.doc_第3页
第3页 / 共6页
[计算机类试卷]国家二级(C++)机试模拟试卷33及答案与解析.doc_第4页
第4页 / 共6页
[计算机类试卷]国家二级(C++)机试模拟试卷33及答案与解析.doc_第5页
第5页 / 共6页
点击查看更多>>
资源描述

1、国家二级( C+)机试模拟试卷 33及答案与解析 一、程序改错题( 30分) 0 使用 VC6打开考生文件夹下的工程 RevProj14。此工程包含一个源程序文件RevMain14.cpp,但该程序中类的定义有错误。请改正程序中的错误,使它能得到正确结果。 注意,不要改动 main函数,不得删行或增行,也不得更改程序的结构。 源程序文件 RevMain14.cpp中的程序清单如下: /RevMain14.cpp #include iostream #include math using namespace std; class Point private: double x; double y

2、; public: Point() void Point(double x1,double y1) x=x1; y=y1; void setvalue(double x,double y) x=x; y=y; double getx () return x; double gety() return y; void print() cout “x=“ x “,y= “ y end1; Point() ; class Line private: Point p1; Point p2; double width; public: Line(double x1,double y1,double x2

3、,double y2,double d) :p1(x1,y1),p2(x2,y2) width=d; Line() void displength() double 1; 1=sqrt(p1.getx)-p2.getx()*(p1.getx()-p2-getx()+ (p1.gety()-p2.gety()*(p1.gety()-p2.gety(); cout “the length of Line is “ 1 end1; ; int main() Line *p1; Line 1(5,15,25,35,0.5); p1= p1- displength(); return 0; 二、简单应用

4、题( 40分) 0 请编写一个函数 unsigned short fun(unsigned short s)。其中 s是一个大于 10的无符号整数,若 s是一个 n(n2)位整数,函数求出 s的 n位数之和作为函数的返回值。 例 如, s值为 4315,则函数返回 13。 s值为 13函数,则返回 4。 注意:部分源程序已存在文件 PROC15.cpp中。 请勿修改主函数和其他函数中的任何内容,仅在函数 fun()的花括号中填写若干语句。 文件 PROC15.cpp的内容如下: /PROC15.cpp #include iostream using namespace std; unsigne

5、d short fun(unsigned short s); int main() unsigned short a; cout “Enter a unsigned short integer number: “; cin a; if(a 10) cout “Data error!“; else cout “The result: “ fun(a) end1; return 0; unsigned short fun(unsigned short s) /* * * * * * 三、综合应用题( 30分) 0 使用 VC6打开考生文件夹下的工程 MyProj13。此工程包含一个源程序文件MyM

6、ain12.cpp。程序中定义了两个类 Base和 Derived,但类的定义并不完整。 请按要求完成下列操作,将类的定义补充完成: 定义类 shapes的保护成员 x和 y,它们都是整型变量。请在注释 “/* *1* *”之后添加适当的语句。 完成构造函数 shapes(int d,int w)定义,使类 shapes的保护成员 x、 y分别初始化为 d、 w,并分别具有默认值 0、 0。请在注释 “/* *2* *”之后添加适当的语句。 完成类 shapes的成员函数 setvalue(int d,int w)的定义, shapes类的数据成员 x和y分别被设置成 d和 w。请在注释 “/

7、* *3* *”之后添加适当的语句。 将类 shapes的成员函数 void disp()设置成纯虚函数。请在注释 “/* *4* *”之后添加适当的语句。 注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。 源程序文件 MyMain13.cpp清单如下: /MyMain13.cpp #include iostream using namespace std; class shapes /* * *1* * * public: /* * *2* * * void setvalue(int d, int w) /* * *3* * * /* * * 4 * * * ; class square : public Shapes public: void disp() cout x*y end1; ; int main() shapes*ptr; square s1; ptr=&s1; ptr- setvalue(10, 5); ptr- disp(); return 0; 国家二级( C+)机试模拟试卷 33答案与解析 一、程序改错题( 30分) 二、简单应用题( 40分) 三、综合应用题( 30分)

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

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

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