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

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

1、二级 C+-74 (1)及答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 proj1下的工程 proj1。程序中位于每个“/ERROR *found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name:Smith Age:21 ID:99999 CourseNum:12 Record:970 注意:只修改每个“/ERROR *found*”下的那一行,不要改动程序中的其他内容。 #include iostream using namespace std; class S

2、tudentInfo protected: /ERROR * found* char Name; int Age; int ID; int CourseNum; float Record; public: /ERROR * found* void StudentInfo(char * name, int age, int ID, int courseNum, float record); / ERROR * found* void StudentInfo () delete Name; float AverageRecord() return Record/CourseNum; void sh

3、ow()const; ; StudentInfo: StudentInfo (char * name, int age, int ID, int courseNum, float record) Name = strdup(name); Age = age; this-ID = ID; CourseNum = courseNum; Record = record; void StudentInfo:show () cout “Name: “Name“ Age: “Age“ ID: “ID “ CourseNum: “ CourseNum “Record: “Record_二、B简单应用题/B(

4、总题数:1,分数:30.00)2.请使用 VC6或使用答题菜单打开考生文件夹 proj2下的工程 proj2。此工程中包含一个源程序文件main.cpp,其中有类 Point(“点”)、Circle(“圆”)和主函数 main的定义。请在横线处填写适当的代码并删除横线,以实现上述定义,此程序的正确输出结果应为: 30,50 center=120,89;radius=2.7注意:只在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“/*found*”。 #include iostream #include iomanip using namespace std; class Po

5、int /点类 public: /构造函数参数 xValue为点的 X坐标,yValue 为点的 Y坐标 /*found* Point ( int xValue = 0, int yValue = 0) ; void setX ( int xValue ) x = xValue; int getX() return x; void setY( int yValue ) y = yValue; int getY () return y; /声明虚函数 Disp() /* found* cout getX() “, “ getY() ; ; private: int x; / x 坐标 int y

6、; / y 坐标 ; class Circle : public Point /圆类 public: /构造函数参数 xValue为圆心的 X坐标,yValue 为圆心的 Y坐标 Circle( int xValue=0, int yValue=0, double radiusValue=0.0) /* found* _ void setRadius (double radiusValue) radius = ( radiusValue 0.0 ? 0.0 : radiusValue); double getRadius () return radius; double getDiameter

7、 () return 2 * getRadius (); double getCircumference() return 3.14159 * getDiameter() ; /计算周长 double getArea () return 3.14159 * getRadius () * getRadius (); /计算面积 void Disp() /输出圆对象 cout “center = “; Point:Disp(); cout “; radius = “ getRadius(); private: double radius; /圆半径 ; int main () Point poin

8、t ( 30, 50 ); Circle circle( 120, 89, 2.7 ); Point * pointPtr; pointPtr = pointPtr - Disp (); cout endl; pointPtr = /将派生类对象 pointPtr - Disp (); return 0; (分数:30.00)_三、B综合应用题/B(总题数:1,分数:40.00)3.请使用 VC6或使用答题菜单打开考生文件夹 proj3下的工程 prog3,其中声明了 ValArray类,该类在内部维护一个动态分配的整型数组 v。ValArray 类的成员函数 equals用于判断两个对象是否

9、相等。两个 ValArray对象相等,当且仅当两者的元素个数 size相等,并且整型数组 v的对应元素分别相等。如果两个对象相等,则 equals返回 true,否则返回 false。请编写成员函数 equals。在 main函数中给出了一组测试数据,此种情况下程序的输出结果应为: v1=1,2,3,4,5 v2=1,2,3,4 v3=1,2,3,4,6 v4=1,2,3,4,5 v1!=v2 v1!=v3 v1=v4 要求: 补充编制的内容写在“/*333*”与“/*666*”之间,不得修改程序的其他部分。 注意:程序最后将结果输出到文件 out.dat中。输出函数 writeToFile已

10、经编译为 obj文件,并且在本程序中调用。/VatArray.h #include iostream using namespace std; class ValArray int* v; int size; public: ValArray const int* p, int n): size(n) v = new intsize; for (int i=0; isize; i+) vi=pi; ValArray() delete v; bool equals(const ValArray void print(ostream for (int i=0; isize-1; i+) outvi

11、“, “; outvsize-1; ; void writeToFile(const char * ); /main.cpp #include “ValArray.h“ bool ValArray:equals (const ValArray const int b=1, 2, 3, 4; const int c=1, 2, 3, 4, 6; const int d=1, 2, 3, 4, 5; ValArray vl (a, 5); ValArray v2(b, 4); ValArray v3(c, 5); ValArray v4 (d, 5); cout“v1=“; v1.print(co

12、ut); coutendl; cout“v2 =“; v2.print(cout); coutendl; cout“v3=“; v3.print(cout); coutendl; cout“v4=“; v4.print(cout); coutendl; cout“v1“(v1.equals (v2)?“=“: “!=“) “v2“ endl; cout“vl“(v1.equals (v3)?“=“: “!=“) “v3“ endl; cout“v1“(v1.equals (v4)?“=“:“!=“)“v4“endl; writeToFile(“); return 0; (分数:40.00)_二

13、级 C+-74 (1)答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 proj1下的工程 proj1。程序中位于每个“/ERROR *found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name:Smith Age:21 ID:99999 CourseNum:12 Record:970 注意:只修改每个“/ERROR *found*”下的那一行,不要改动程序中的其他内容。 #include iostream using namespace std; class Stu

14、dentInfo protected: /ERROR * found* char Name; int Age; int ID; int CourseNum; float Record; public: /ERROR * found* void StudentInfo(char * name, int age, int ID, int courseNum, float record); / ERROR * found* void StudentInfo () delete Name; float AverageRecord() return Record/CourseNum; void show

15、()const; ; StudentInfo: StudentInfo (char * name, int age, int ID, int courseNum, float record) Name = strdup(name); Age = age; this-ID = ID; CourseNum = courseNum; Record = record; void StudentInfo:show () cout “Name: “Name“ Age: “Age“ ID: “ID “ CourseNum: “ CourseNum “Record: “Record_正确答案:(1)char*

16、Name; (2)StudentInfo(char*name, int age, int ID, int courseNum, float record); (3)void StudentInfo:show()const)解析:考点 本题考查 StudentInfo类,其中涉及动态数组、构造函数、析构函数和成员函数。 解析 (1)主要考查考生对字符指针的掌握,由构造函数的函数体 Name=strdup(name);语句,可知 Name应该为字符指针。 (2)主要考查考生对构造函数的掌握,构造函数前不能添加任何返回类型。 (3)主要考查考生对 const函数的掌握,由类的定义 voidshow(

17、)const;可知,show 函数是 const函数。二、B简单应用题/B(总题数:1,分数:30.00)2.请使用 VC6或使用答题菜单打开考生文件夹 proj2下的工程 proj2。此工程中包含一个源程序文件main.cpp,其中有类 Point(“点”)、Circle(“圆”)和主函数 main的定义。请在横线处填写适当的代码并删除横线,以实现上述定义,此程序的正确输出结果应为: 30,50 center=120,89;radius=2.7注意:只在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“/*found*”。 #include iostream #include

18、 iomanip using namespace std; class Point /点类 public: /构造函数参数 xValue为点的 X坐标,yValue 为点的 Y坐标 /*found* Point ( int xValue = 0, int yValue = 0) ; void setX ( int xValue ) x = xValue; int getX() return x; void setY( int yValue ) y = yValue; int getY () return y; /声明虚函数 Disp() /* found* cout getX() “, “ g

19、etY() ; ; private: int x; / x 坐标 int y; / y 坐标 ; class Circle : public Point /圆类 public: /构造函数参数 xValue为圆心的 X坐标,yValue 为圆心的 Y坐标 Circle( int xValue=0, int yValue=0, double radiusValue=0.0) /* found* _ void setRadius (double radiusValue) radius = ( radiusValue 0.0 ? 0.0 : radiusValue); double getRadiu

20、s () return radius; double getDiameter () return 2 * getRadius (); double getCircumference() return 3.14159 * getDiameter() ; /计算周长 double getArea () return 3.14159 * getRadius () * getRadius (); /计算面积 void Disp() /输出圆对象 cout “center = “; Point:Disp(); cout “; radius = “ getRadius(); private: double

21、 radius; /圆半径 ; int main () Point point ( 30, 50 ); Circle circle( 120, 89, 2.7 ); Point * pointPtr; pointPtr = pointPtr - Disp (); cout endl; pointPtr = /将派生类对象 pointPtr - Disp (); return 0; (分数:30.00)_正确答案:(1)x(xValue),y(yValue) (2)virtual voidDisp() (3):Point(xValue, yValue),radius(radiusValue)解析

22、:考点 本题考查 Point类及其派生类 Circle类,其中涉及构造函数、成员函数和虚函数。 解析 (1)主要考查考生对构造函数的掌握,使用成员列表初始化。 (2)主要考查考生对虚函数的掌握,先看语句注释:声明虚函数 Disp()。可知该函数为虚函数,注意虚函数要使用关键字 virtual。 (3)主要考查考生对构造函数的掌握,使用成员列表初始化。三、B综合应用题/B(总题数:1,分数:40.00)3.请使用 VC6或使用答题菜单打开考生文件夹 proj3下的工程 prog3,其中声明了 ValArray类,该类在内部维护一个动态分配的整型数组 v。ValArray 类的成员函数 equal

23、s用于判断两个对象是否相等。两个 ValArray对象相等,当且仅当两者的元素个数 size相等,并且整型数组 v的对应元素分别相等。如果两个对象相等,则 equals返回 true,否则返回 false。请编写成员函数 equals。在 main函数中给出了一组测试数据,此种情况下程序的输出结果应为: v1=1,2,3,4,5 v2=1,2,3,4 v3=1,2,3,4,6 v4=1,2,3,4,5 v1!=v2 v1!=v3 v1=v4 要求: 补充编制的内容写在“/*333*”与“/*666*”之间,不得修改程序的其他部分。 注意:程序最后将结果输出到文件 out.dat中。输出函数 w

24、riteToFile已经编译为 obj文件,并且在本程序中调用。/VatArray.h #include iostream using namespace std; class ValArray int* v; int size; public: ValArray const int* p, int n): size(n) v = new intsize; for (int i=0; isize; i+) vi=pi; ValArray() delete v; bool equals(const ValArray void print(ostream for (int i=0; isize-1

25、; i+) outvi“, “; outvsize-1; ; void writeToFile(const char * ); /main.cpp #include “ValArray.h“ bool ValArray:equals (const ValArray const int b=1, 2, 3, 4; const int c=1, 2, 3, 4, 6; const int d=1, 2, 3, 4, 5; ValArray vl (a, 5); ValArray v2(b, 4); ValArray v3(c, 5); ValArray v4 (d, 5); cout“v1=“;

26、v1.print(cout); coutendl; cout“v2 =“; v2.print(cout); coutendl; cout“v3=“; v3.print(cout); coutendl; cout“v4=“; v4.print(cout); coutendl; cout“v1“(v1.equals (v2)?“=“: “!=“) “v2“ endl; cout“vl“(v1.equals (v3)?“=“: “!=“) “v3“ endl; cout“v1“(v1.equals (v4)?“=“:“!=“)“v4“endl; writeToFile(“); return 0; (

27、分数:40.00)_正确答案:(if(size!=other.size) /判断数组长度,如果 other对象的长度和 this对象的长度不相等 return false; /返回 false for(int i=0; isize; i+) /i 从零到 size-1遍历,判断对象数组元素是否相同 if(vi!=other.vi) /如果 vi不等于 other对象的 vi return false; /返回 false return true; /否则返回 true)解析:考点 本题考查 ValArray类,其中涉及构造函数、动态数组、析构函数、const 函数和 bool函数。 解析 主要考查考生对数组的掌握,函数 bool ValArray:equals(const ValArray&other)要求判断两个数组是否相等,先判断数组长度,如果长度相同再根据数组元素依次判断。

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

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

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