欢迎来到麦多课文档分享! | 帮助中心 海量文档,免费浏览,给你所需,享你所想!
麦多课文档分享
全部分类
  • 标准规范>
  • 教学课件>
  • 考试资料>
  • 办公文档>
  • 学术论文>
  • 行业资料>
  • 易语言源码>
  • ImageVerifierCode 换一换
    首页 麦多课文档分享 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

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

    • 资源ID:1324101       资源大小:47KB        全文页数:6页
    • 资源格式: DOC        下载积分:5000积分
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    二维码
    微信扫一扫登录
    下载资源需要5000积分(如需开发票,请勿充值!)
    邮箱/手机:
    温馨提示:
    如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如需开发票,请勿充值!如填写123,账号就是123,密码也是123。
    支付方式: 支付宝扫码支付    微信扫码支付   
    验证码:   换一换

    加入VIP,交流精品资源
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

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

    1、二级 C+-49及答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 prog1下的工程 prog1。此工程中包含程序文件main.cpp,其中有类 Score(“成绩”)和主函数 main的定义。程序中位于每个“/ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: 学号:12345678课程:英语总评成绩:85 注意:只修改每个“/ERROR*found*”下的一行,不要改动程序中的其他内容。 #include iostream using namespac

    2、e std; class Score public: Score (const char * the_course,const char * the_id, int the_normal,int the_midterm, int the_end_of_term) : course (the_course), normal (the_normal), midterm (the_midterm), end_of_term(the_end_of_term) /ERROR *found* strcpy (the_id, student_id) ; const char * getCourse ()co

    3、nst return course; /返回课程名称 /ERROR *found* const char * getID () const return /返回学号 int getNormal () const return normal; /返回平时成绩 int getMidterm()const return midterm; int getEndOfTerm () const returnend of term; /返回期末考试成绩 int getFinal ()const; /返回总评成绩 private : const char * course; /课程名称 char studen

    4、t_id12; /学号 int normal; /平时成绩 int midterm; /期中考试成绩 int end of term; /期末考试成绩 ; /总评成绩中平时成绩占 20%,期中考试占 30%,期末考试占 50%,最后结果四舍五入为一个整数 / ERROR *found* int getFinal () const return normal* 0.2 +midterm* 0.3 +end_of_term* 0.5 +0.5; int main () char English =“英语“; Score score (English, “12345678“, 68, 83, 92)

    5、; cout “学号:“ score. getID () “; cout “课程:“ score. getCourse()“; cout “总评成绩:“ score.getFihal () endl; return 0; (分数:30.00)_二、B简单应用题/B(总题数:1,分数:30.00)2.请使用 VC6或使用答题菜单打开考生文件夹 prog2下的工程 prog2,此工程中包含一个程序文件main.cpp,其中有“班级”类 Class和“学生”类 Student的定义,还有主函数 main的定义。在主函数中定义了两个“学生”对象,他们属于同一班级。程序展示,当该班级换教室后,这两个人的

    6、教室也同时得到改变。请在横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:改换教室前: 学号:0789 姓名:张三 班级:062113 教室:521 学号:0513 姓名:李四 班级:062113 教室:521 改换教室后: 学号:0789 姓名:张三 班级:062113 教室:311 学号:0513 姓名:李四 班级:062113 教室:311 注意:只能在横线处填写适当的代码,不要改动程序中的其他内容。 #include iostream using namespace std; class Class /“班级“类 public: Class(const c

    7、har * id, const char *room) strcpy (class_id, id); /* found* _ const char * getClassID()const return class id; /返回班号 /* found* const char * getClassroom ()const_ /返回所在教室房号 void changeRoomTo (const char * new_room /改换到另一个指定房号的教室 strcpy(classroom, new room); private: char class id20; /班号 char classroo

    8、m20; /所在教室房号 ; class Student /“学生“类 char my_id 10; /学号 char my_name20 ; /姓名 Class /所在教室 public: /*found* Student (const char * the_id, constchar * the_name, Class strcpy (my_name, the_name ); const char * getID () const returnmy_id; const char * getName ()const return my_name ; Class getClass () con

    9、st return my_class; ; void showStudent (Student * stu) cout “学号:“ stu-getID () “; cout “姓名:“ stu -getName () “; cout “班级:“ stu -getClass (). getClassID () “; cout “教室:“ stu -getClass (). getClassroom() endl; int main() Class cla (“062113“, “521“); Student Zhang (“0789“, “张三“, cla), Li (“0513“, “李四“,

    10、 cla); cout “改换教室前:“ endl; showStudent (showStudent ( /062113班的教室由 521改换到 311 /*found* _ cout “改换教室后: “ endl; showStudent ( showStudent ( return 0; (分数:30.00)_三、B综合应用题/B(总题数:1,分数:40.00)3.请使用 VC6或使用答题菜单打开考生文件夹 prog3下的工程 prog3,其中包含了类 Polynomial(“多项式”)的定义。形如 5x4+3.4x2-7x+2的代数式称为多项式,其中的 5为 4次项系数,3.4 为 2

    11、次项系数,-7 为 1次项系数,2 为 0次项(常数项)系数。此例缺 3次项,意味着 3次项系数为 0,即省略了 0x3。在 Polynomial中,多项式的各个系数存储在一个名为 coef的数组中。例如,对于上面的多项式,保存在 coef0、coef1coef4中的系数依次为:2.0、-7.0、3.4、0.0、5.0,也即对于 i次项,其系数就保存在coefi中。成员函数 getValue计算多项式的值,多项式中 x的值是由参数指定的。请补充完成文件 Polynomial.cpp中成员函数 getValue的定义。此程序的正确输出结果应为:Value of p1 when x=2.0:59.

    12、8Value of p2 when x=3.0:226.8注意:只在函数 getValue的“/*333*”和“/*666*”之间填入若干语句,不要改动程序中的其他内容。/Polynomiac.h#include iostreamusing namespace std;class Polynomial /“多项式“类public:Polynomial (double coef , intnum): coef (new double num ), num_of_terms (num)for(int i=0; inum_of_terms; i+)this-coefi =coefi;Polynomi

    13、al() delete coef;/返回指定次数项的系数double getCoefficient (int power)const return coefpower; /返回在 x等于指定值时多项式的值double getValue (double x) const ;private :/系数数组, coef0为 0次项(常数项)系数,coef1为 1次项系数, coef2为 2次项(平方项)系数, 余类推。double * coef;int num of terms;void writeToFile(const char * path);/Polymomial.cpp#include“Po

    14、lynomial.h“double Polynomial:getValue (double x)const/多项式的值 value为各次项的累加和double value = coef0;/*333*/*666*return value;/main.cpp#include “Polynomial.h“int main() double p1 = 5.0, 3.4, -4.0, 8.0, p2 =0.0, -5.4, 0.0, 3.0, 2.0;Polynomial poly1 (p1, sizeof (p1)/sizeof (double), poly2 (p2, sizeof(p2)/siz

    15、eof (double);cout “Value of p1 when x =2.0 : “poly1.getValue (2.0) endl;cout “Value of p2 when x =3.0 : “poly2.getValue (3.0) endl;writeToFile (“ “);return 0;(分数:40.00)_二级 C+-49答案解析(总分:100.00,做题时间:90 分钟)一、B基本操作题/B(总题数:1,分数:30.00)1.请使用 VC6或使用答题菜单打开考生文件夹 prog1下的工程 prog1。此工程中包含程序文件main.cpp,其中有类 Score(“

    16、成绩”)和主函数 main的定义。程序中位于每个“/ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: 学号:12345678课程:英语总评成绩:85 注意:只修改每个“/ERROR*found*”下的一行,不要改动程序中的其他内容。 #include iostream using namespace std; class Score public: Score (const char * the_course,const char * the_id, int the_normal,int the_midterm, int the_end_of_term)

    17、: course (the_course), normal (the_normal), midterm (the_midterm), end_of_term(the_end_of_term) /ERROR *found* strcpy (the_id, student_id) ; const char * getCourse ()const return course; /返回课程名称 /ERROR *found* const char * getID () const return /返回学号 int getNormal () const return normal; /返回平时成绩 int

    18、 getMidterm()const return midterm; int getEndOfTerm () const returnend of term; /返回期末考试成绩 int getFinal ()const; /返回总评成绩 private : const char * course; /课程名称 char student_id12; /学号 int normal; /平时成绩 int midterm; /期中考试成绩 int end of term; /期末考试成绩 ; /总评成绩中平时成绩占 20%,期中考试占 30%,期末考试占 50%,最后结果四舍五入为一个整数 / ER

    19、ROR *found* int getFinal () const return normal* 0.2 +midterm* 0.3 +end_of_term* 0.5 +0.5; int main () char English =“英语“; Score score (English, “12345678“, 68, 83, 92); cout “学号:“ score. getID () “; cout “课程:“ score. getCourse()“; cout “总评成绩:“ score.getFihal () endl; return 0; (分数:30.00)_正确答案:(1)st

    20、rcpy(student_jd, the_jd); (2)const char*getID()const return student_id; (3)int Score:getFinal()const)解析:考点 本题考查的是 Score类,其中涉及动态数组、构造函数、strcpy 函数、const 函数和成员函数。strcpy()函数和 strlen()函数等经常会考到,要注意它们的参数要求。类的成员函数在类外定义时需要加上类名的作用域符。 解析 (1)主要考查考生对 strcpy()函数的掌握情况,strcpy(参数一,参数二)函数的功能是将参数二的字符串复制给参数一,因此在这里 stud

    21、ent_id应该位于参数一的位置,即 strcpy(student_id, the_id);。 (2)主要考查考生对函数返回值的掌握情况,根据注释:返回学号可知学号应该由一个字符串组成。再看函数要返回的类型:const char*,可知要返回一个 char型指针,也就是一个 char型数组,而 class Class /“班级“类 public: Class(const char * id, const char *room) strcpy (class_id, id); /* found* _ const char * getClassID()const return class id; /

    22、返回班号 /* found* const char * getClassroom ()const_ /返回所在教室房号 void changeRoomTo (const char * new_room /改换到另一个指定房号的教室 strcpy(classroom, new room); private: char class id20; /班号 char classroom20; /所在教室房号 ; class Student /“学生“类 char my_id 10; /学号 char my_name20 ; /姓名 Class /所在教室 public: /*found* Student

    23、 (const char * the_id, constchar * the_name, Class strcpy (my_name, the_name ); const char * getID () const returnmy_id; const char * getName ()const return my_name ; Class getClass () const return my_class; ; void showStudent (Student * stu) cout “学号:“ stu-getID () “; cout “姓名:“ stu -getName () “;

    24、cout “班级:“ stu -getClass (). getClassID () “; cout “教室:“ stu -getClass (). getClassroom() endl; int main() Class cla (“062113“, “521“); Student Zhang (“0789“, “张三“, cla), Li (“0513“, “李四“, cla); cout “改换教室前:“ endl; showStudent (showStudent ( /062113班的教室由 521改换到 311 /*found* _ cout “改换教室后: “ endl; sh

    25、owStudent ( showStudent ( return 0; (分数:30.00)_正确答案:(1)strcpyr(classroom, room); (2)return classroom; (3)my_class(the_class) (4)cla.changeRoomTo(“311“);)解析:考点 本题考查的是 Class类和 Student类,其中涉及构造函数、const 函数和 strcpy函数。在Student类中使用 Class类,在 C+中很常见,在调用的时候要注意类的调用格式及构造函数。 解析 (1)主要考查考生对 strcpy函数的掌握情况,根据上一条语句:st

    26、rcpy(class_id, id);可知,这条语句要复制字符串 room,因此使用 strcpy函数复制,即 strcpy(classroom, room);。 (2)主要考查考生对函数返回值的掌握情况,根据函数要求:返回所在教室房号及函数要求返回的类型为 const char*,可以得出这里直接使用 return语句返回 classroom即可。 (3)主要考查考生对构造函数的掌握情况,先看函数体中: strcpy(my_id, the_id); strcpy(my_name, the_name); 可知只有参数 Class class Polynomial /“多项式“类public:P

    27、olynomial (double coef , intnum): coef (new double num ), num_of_terms (num)for(int i=0; inum_of_terms; i+)this-coefi =coefi;Polynomial() delete coef;/返回指定次数项的系数double getCoefficient (int power)const return coefpower; /返回在 x等于指定值时多项式的值double getValue (double x) const ;private :/系数数组, coef0为 0次项(常数项)

    28、系数,coef1为 1次项系数, coef2为 2次项(平方项)系数, 余类推。double * coef;int num of terms;void writeToFile(const char * path);/Polymomial.cpp#include“Polynomial.h“double Polynomial:getValue (double x)const/多项式的值 value为各次项的累加和double value = coef0;/*333*/*666*return value;/main.cpp#include “Polynomial.h“int main() doubl

    29、e p1 = 5.0, 3.4, -4.0, 8.0, p2 =0.0, -5.4, 0.0, 3.0, 2.0;Polynomial poly1 (p1, sizeof (p1)/sizeof (double), poly2 (p2, sizeof(p2)/sizeof (double);cout “Value of p1 when x =2.0 : “poly1.getValue (2.0) endl;cout “Value of p2 when x =3.0 : “poly2.getValue (3.0) endl;writeToFile (“ “);return 0;(分数:40.00

    30、)_正确答案:(for(int i=1; inum_of_terms; i+) /从 i=1开始遍历数组 coef的所有项 int j=i-1; /把 i-1赋值给 j,保证从零次方开始 double x_alue=x; /把 x赋给 x_value while(j0) /当 j大于零时,做相乘操作,即完成该项的乘方动作 x_value*=x; j-; value+=coefi*x_value; /把 i项的乘方结果乘以该项系数后加进 value中 )解析:考点 本题考查 Polynomial类,其中涉及构造函数、动态数组、析构函数和 const函数。 解析 题目要求成员函数 getValue计算多项式的值,多项式中 x的值由参数指定,多项式的值 value为各次项的累加和。由类的定义可知数组 coef中存储的是各次项的系数,这里使用 for循环来完成题目要求,当次项为 0时,value=coef0。当次项为 1时,value=coef1*x+coef0。依次类推直到 x的最高次数。


    注意事项

    本文(【计算机类职业资格】二级C++-49及答案解析.doc)为本站会员(testyield361)主动上传,麦多课文档分享仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文档分享(点击联系客服),我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

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

    收起
    展开