收藏 分销(赏)

二级C++上机题库.doc

上传人:pc****0 文档编号:6421794 上传时间:2024-12-08 格式:DOC 页数:271 大小:1.23MB
下载 相关 举报
二级C++上机题库.doc_第1页
第1页 / 共271页
二级C++上机题库.doc_第2页
第2页 / 共271页
二级C++上机题库.doc_第3页
第3页 / 共271页
二级C++上机题库.doc_第4页
第4页 / 共271页
二级C++上机题库.doc_第5页
第5页 / 共271页
点击查看更多>>
资源描述

1、 全国计算机二级C+上机(内部)专用盗用必究! 第一套请使用VC6打开考生文件夹下的工程proj1,该工程含有一个源程序文件proj1.cpp。其中每个注释/ERROR *found*之后的一行有语句存在错误。请修改这些错误,使程序的输出结果为:1 2 3 4 5 6 7 8 9 10/ proj1.cpp#include using namespace std;class MyClass public: MyClass(int len) array = new intlen; arraySize = len; for(int i = 0; i arraySize; i+) arrayi =

2、i+1; MyClass() / ERROR *found* delete array; / delete array; void Print() const for(int i = 0; i arraySize; i+)/ ERROR *found* cin arrayi ; / cout arrayi ; cout endl; private: int *array; int arraySize;int main()/ ERROR *found* MyClass obj; /MyClass obj(10); obj.Print(); return 0;请使用VC6打开考生文件夹下的工程pr

3、oj2,该工程含有一个源程序文件proj2.cpp。其中定义了类Bag和用于测试该类的主函数main。类Bag是一个袋子类,用来存放带有数字标号的小球(如台球中的球,在类中用一个整数值表示一个小球),其中运算符成员函数=用来判断两个袋子对象是否相同(即小球的个数相同,每种小球数目也相同,但与它们的存储顺序无关);成员函数int InBag(int ball)用来返回小球ball在当前袋子内出现的次数,返回0表示该小球不存在。为类实现这两个函数,其用法可参见主函数main。运算符函数operator =中首先判断两个袋子内的小球个数是否相同,再调用InBag函数来判断每种小球在两个袋子内是否具有

4、相同的出现次数/ proj2.cpp#include using namespace std;const int MAXNUM = 100;class Bag private: int num; int bagMAXNUM;public: Bag(int m, int n=0); / 构造函数 bool operator = (Bag &b);/ 重载运算符= int InBag(int ball);/ 某一小球在袋子内的出现次数,返回0表示不存在;Bag:Bag(int m, int n) if(n MAXNUM) cerr Too many membersn; exit(-1); for(

5、int i = 0; i n; i+) bagi = mi; num = n;bool Bag:operator = (Bag &b)/ 实现运算符函数= if (num != b.num)/ 元素个数不同 return false; for (int i = 0; i num; i+)/*found* if (_InBag(bagi)!=b.InBag(bagi)_)/ TODO: 加入条件, 判断当前袋子中每个元素在当前袋子和袋子b中是否出现次数不同/*found* _ return false_;/ TODO: 加入一条语句 return true;int Bag:InBag(int b

6、all) int count = 0; for (int i = 0; i n; for (i = 0; i datai; Bag b1(data, n);/ 创建袋子对象b1 cin n; for (i = 0; i datai; Bag b2(data, n);/ 创建袋子对象b2 if( b1 = b2)/ 测试b1和b2是否相同 cout Bag b1 is same with Bag b2n; else cout Bag b1 is not same with Bag b2n; return 0;请使用VC6打开考生目录下的工程文件proj3。此工程包含一个源程序文件proj3.cp

7、p,其中定义了用于表示二维向量的类MyVector;程序应当显示:(6,8)但程序中有缺失部分,请按下面的提示,把下划线标出的三处缺失部分补充完整: (1)在/*1* *found*的下方是构造函数的定义,它用参数提供的坐标对x和y进行初始化。 (2)在/*2* *found*的下方是减法运算符函数定义中的一条语句。两个二维向量相减生成另一个二维向量:它的X坐标等于两个向量X的坐标之差,它的Y坐标等于两个向量Y坐标之差。 (3)在/*3* *found*的下方的语句的功能是使变量v3获得新值,它等于向量v1与向量v2之和。/ proj3.cpp#includeusing std:ostream

8、;using std:cout;using std:endl;class MyVector /表示二维向量的类 double x; /X坐标值 double y; /Y坐标值public: MyVector(double i=0.0 , double j=0.0); /构造函数 MyVector operator+( MyVector j); /重载运算符+ friend MyVector operator-( MyVector i, MyVector j); /重载运算符- friend ostream& operator( ostream& os, MyVector v); /重载运算符;

9、/*1* *found*_ MyVector:MyVector _(double i , double j): x(i),y(j)MyVector MyVector:operator+( MyVector j) return MyVector(x+j.x, y+j.y);MyVector operator-( MyVector i, MyVector j)/*2* *found* return MyVector(_i.x-j.x,i.y-j.y _);ostream& operator( ostream& os, MyVector v) os ( v.x , v.y ) ; /输出向量v的坐标

10、 return os;int main() MyVector v1(2,3), v2(4,5), v3;/*3* *found* v3=_ v1+v2_; coutv3endl; return 0;第二套请使用VC6打开考生文件夹下的工程proj1,该工程含有一个源程序文件proj1.cpp。其中位于每个注释/ERROR *found*之后的一行语句存在错误。请修正这些错误,使程序的输出结果为: Constructor called of 10 The value is 10 Descructor called of 10/ proj1.cpp#include using namespace

11、std;class MyClass public: MyClass(int i) value = i; cout Constructor called of value endl; / ERROR *found* void Print() / void Print() const cout The value is value endl; / ERROR *found* void MyClass() /MyClass() cout Destructor called of value endl; private:/ ERROR *found* int value = 0; / int valu

12、e;int main() const MyClass obj(10); obj.Print(); return 0;凡用过C语言标准库函数strcpy(char*s1,char*s2)的程序员都知道使用该函数时有一个安全隐患,即当指针s1所指向的空间不能容纳字符串s2的内容时,将发生内存错误。类String的Strcpy成员函数能进行简单的动态内存管理,其内存管理策略为: (1)若已有空间能容纳下新字符串,则直接进行字符串拷贝; (2)若已有空间不够时,它将重新申请一块内存空间(能容纳下新字符串),并将新字符串内容拷贝到新申请的空间中,释放原字符空间。 请使用VC6打开考生文件夹下的工程pro

13、j2,该工程含有一个源程序文件proj2.cpp。其中定义了类String和用于测试该类的主函数main,并且成员函数Strcpy的部分实现代码已在该文件中给出,请在标有注释/*found*行的下一行添加适当的代码,将这个函数补充完整,以实现其功能。/ proj2.cpp#include using namespace std;class String private: int size;/ 缓冲区大小 char *buf;/ 缓冲区public: String(int bufsize); void Strcpy(char *s); / 将字符串s复制到buf中 void Print() co

14、nst; String() if (buf != NULL) delete buf; ;String:String(int bufsize) size = bufsize; buf = new charsize; *buf = 0;void String:Strcpy(char *s) char *p,*q; int len = strlen(s); if (len+1 size) size = len+1; p = q = new charsize;/*found* while(_*(q+)=*(s+)_); / TODO: 添加代码将字符串s拷贝到字符指针q中 delete buf; bu

15、f = p; else /*found* for(p=buf;_ *p=*s _;p+,s+); / TODO: 添加代码将字符串s拷贝到buf中 void String:Print() const cout size t buf endl;int main() char s100; String str(32); cin.getline(s, 99); str.Strcpy(s); str.Print(); return 0;请使用VC6打开考生目录下的工程文件proj3。此工程包含一个源程序文件proj3.cpp,其中定义了用于表示平面坐标系中的点的类myPoint和表示三角形的类MyTr

16、iangle;程序运行后应当显示: 682843 2 但程序中的缺失部分,请按下面的提示,把下划线标出的三处缺失部分补充完整: (1)在/*1* *found*的下方是构造函数的定义,它参数提供的三个顶点对point1、point2和point3进行初始化。 (2)在/*2* *found*的下方是成员函数perimeter的定义,该函数返回三角形的周长。 (3)在/*3* *found*的下方是成员函数area的定义中的一条语句。函数area返回三角形的面积。 方法是:若a、b、c为三角形的三个边长,并令s=(a+b+c)/2,则三角形的面积A为A=sqrt(s*(s-a)*(s-b)*(s

17、-c)(其中sqrt表示开二次方)/ proj3.cpp#include#includeusing namespace std;class MyPoint /表示平面坐标系中的点的类 double x; double y;public: MyPoint (double x,double y)this-x=x;this-y=y; double getX()const return x; double getY()const return y; void show()const cout(x,y);class MyTriangle /表示三角形的类 MyPoint point1; /三角形的第一个

18、顶点 MyPoint point2; /三角形的第二个顶点 MyPoint point3; /三角形的第三个顶点public: MyTriangle(MyPoint p1,MyPoint p2,MyPoint p3); double perimeter()const; /返回三角形的周长 double area()const; /返回三角形的面积;/*1* *found*MyTriangle:MyTriangle(MyPoint p1,MyPoint p2,MyPoint p3):_ point1(p1),point2(p2),point3(p3)_ double distance(MyPoi

19、nt p1,MyPoint p2) /返回两点之间的距离 return sqrt(p1.getX()-p2.getX()*(p1.getX()-p2.getX()+ (p1.getY()-p2.getY()*(p1.getY()-p2.getY();/*2* *found*_ double MyTriangle:_perimeter()const return distance(point1,point2)+distance(point2,point3)+distance(point3,point1);double MyTriangle:area()const/*3* *found* doub

20、le s=_ perimeter()/2_; / 使用perimeter函数 return sqrt(s*(s-distance(point1,point2)* (s-distance(point2,point3)* (s-distance(point3,point1);int main( ) MyTriangle tri(MyPoint(0,2),MyPoint(2,0),MyPoint(0,0); couttri.perimeter()endltri.area()endl; return 0;第三套请使用VC6打开考生文件夹下的工程proj1,该工程含有一个源程序文件proj1.cpp。其

21、中位于每个注释/ERROR *found*之后的一行语句存在错误。请修正这些错误,使程序的输出结果为:There are 2 object(s)/ proj1.cpp#include using namespace std;class MyClass public:/ ERROR *found* MyClass(int i = 0) value = I / MyClass(int i = 0) :value (i) count+; void Print() cout There are count object(s). endl; private: const int value; stati

22、c int count;/ ERROR *found*static int MyClass:count = 0; / int MyClass:count = 0;int main() MyClass obj1, obj2;/ ERROR *found* MyClass.Print(); / obj1.Print(); return 0;请使用VC6打开考生文件夹下的工程proj2,该工程含有一个源程序文件proj2.cpp。其中定义了模板函数insert(T dataset,int &size,T item)和主函数main。模板函数insert用来将一个数据item插入到一个已排好序(升序)

23、的数据集dataset中,其中类型T可以为int,double,char等数据类型,size为当前数据集中元素的个数,当插入操作完成后,size值将更新。模板函数insert的部分实现代码已在文件proj2.cpp中给出,请在标有注释/TODO:的行中添加适当的代码,将运算符函数的operator-补充完整,以实现其功能。/ proj2.cpp#include using namespace std;/请在该部分插入insert函数模板的实现template void insert(T setdata, int &size, T item) for (int i = 0; i item _)

24、/ TODO: 添加代码,判断查找元素的插入位置 for (int j = i; j size; j+)/*found* _ setdatasize-j+i=setdatasize-j+i-1_; / TODO: 添加一条语句,将插入位置后的所有元素往后移动一个位置 / 提示:移动元素应从最后一个元素开始移动 setdatai = item; / 插入该元素 size+; return; /*found* _ setdatai=item _;/ TODO: 添加一条语句,将元素加到最后一个位置上 size+; return;int main() int idata10 = 22, 35, 56

25、, 128 , iitem, isize = 4, dsize = 4, i; double ddata10 = 25.1, 33.5, 48.9, 75.3 , ditem; cout iitem; insert(idata, isize, iitem); for (i = 0; i isize; i+) cout idatai ; cout endl; cout ditem; insert(ddata, dsize, ditem); for (i = 0; i dsize; i+) cout ddatai ; cout endl; return 0;请使用VC6打开考生目录下的工程文件pr

26、oj3。此工程包含一个源程序文件proj3.cpp,其中定义了用于表示平面坐标中的点的类MyPoint和表示线段的类MyLine;程序应当显示: (0,0)(1,1) 1.41421,1 但程序中的缺失部分,请按下面的提示,把下划线标出的三处缺失部分补充完整: (1)在/*1* *found*的下方是构造函数的定义,它用参数提供两个端点对point1和point2进行初始化。 (2)在/*2* *found*的下方是成员函数length的定义,它返回线段的长度。 (3)在/*3* *found*的下方是成员函数slope的定义中的一条语句。函数slope返回线段的斜率,方法是:若线段的两个端点

27、分别是(x1,y1)和(x2,y2),则斜率k为:k=(y2-y1)/(x2-x1)/ proj3.cpp#include#includeusing namespace std;class MyPoint /表示平面坐标系中的点的类 double x; double y;public: MyPoint (double x,double y)this-x=x;this-y=y; double getX()const return x; double getY()const return y; void show()const cout(x,y);class MyLine /表示线段的类 MyPo

28、int point1; MyPoint point2;public: MyLine(MyPoint p1, MyPoint p2); MyPoint endPoint1()const return point1; /返回端点1 MyPoint endPoint2()const return point2; /返回端点2 double length()const; /返回线段的长度 double slope()const; /返回直线的斜率;/*1* *found*MyLine:MyLine(MyPoint p1, MyPoint p2):_ point1(p1),point2(p2)_/*2*

29、 *found*double MyLine:_ length()const _ return sqrt(point1.getX()-point2.getX()*(point1.getX()-point2.getX()+ (point1.getY()-point2.getY()*(point1.getY()-point2.getY();double MyLine:slope()const/*3* *found* return (_point2.getY()-point1.getY()_)/(point2.getX()-point1.getX();int main() MyLine line(My

30、Point(0,0),MyPoint(1,1); line.endPoint1().show(); line.endPoint2().show(); coutendlline.length(),line.slope()endl; return 0;第四套 请使用答题菜单或使用VC6打开考生文件夹下的工程proj1,该工程含有一个源程序文件proj1.cpp。其中每个注释/ ERROR *found*之后的一行语句存在错误。请改正这些错误,使程序的输出结果为: The value is 10/ proj1.cpp#include using namespace std;class MyClass

31、 int value;public:/ ERROR *found* void MyClass(int val) : value(val) / MyClass(int val) : value(val) int GetValue() const return value; void SetValue(int val);/ ERROR *found*inline void SetValue(int val) value = val; / inline void MyClass:SetValue(int val) value = val; int main() MyClass obj(0); obj

32、.SetValue(10);/ ERROR *found* 下列语句功能是输出obj的成员value的值 cout The value is obj.value endl; / cout The value is obj.GetValue() endl; return 0;请使用答题菜单或使用VC6打开考生文件夹下的工程文件proj2,该工程含有一个源程序文件proj2.cpp,其中定义了CharShape类、Triangle类和Rectangle类。 CharShape是一个抽象基类,它表示由字符组成的图形(简称字符图形),纯虚函数Show用作显示不同字符图形的相同操作接口。Triangle

33、和Rectangle是CharShape的派生类,它们分别用于表示字符三角形和字符矩形,并且都定义了成员函数Show,用于实现各自的显示操作。本程序的正确输出结果为: * * * * # # # 请先阅读程序,分析输出结果,然后根据下列要求在横线处填写适当的代码并删除横线。 (1)将Triangle类的成员函数Show补充完整,使字符三角形的显示符合输出结果。 (2)将Rectangle类的成员函数Show补充完整,使字符矩形的显示符合输出结果。(3)为类外函数fun添加合适的形参。/ proj2.cpp#include using namespace std;class CharShape

34、public: CharShape(char ch) : _ch(ch) ; virtual void Show() = 0;protected: char _ch; / 组成图形的字符;class Triangle : public CharShape public: Triangle(char ch, int r) : CharShape(ch), _rows(r) void Show();private: int _rows; / 行数;class Rectangle: public CharShape public: Rectangle(char ch, int r, int c):C

35、harShape(ch),_rows(r), _cols(c) void Show();private: int _rows, _cols; / 行数和列数;void Triangle:Show() / 输出字符组成的三角形 for (int i = 1; i = _rows; i+) /*found* for (int j = 1; j = _ i+i-1_; j+) cout _ch; cout endl; void Rectangle:Show() / 输出字符组成的矩形/*found* for (int i = 1; i =_rows; i+) /*found* for (int j = 1; j = _cols; j+) cout _ch; cout

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 百科休闲 > 其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服