ImageVerifierCode 换一换
格式:DOC , 页数:8 ,大小:37.50KB ,
资源ID:497204      下载积分:2000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
注意:如需开发票,请勿充值!
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-497204.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文([计算机类试卷]国家二级C++机试(操作题)模拟试卷144及答案与解析.doc)为本站会员(orderah291)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

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

1、国家二级 C+机试(操作题)模拟试卷 144及答案与解析 一、基本操作题 1 请使用 VC6或使用【答题】菜单打开考生文件夹 progl下的工程 prog1。此工程中包含程序文件 main cpp,其中有类 Score(“成绩 ”)和主函数 main的定义。程序中位于每个 “ ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: 学号: 12345678课程:英语总评成绩: 85 注意:只修改每个 “ ERROR*found*”下的一行,不要改动程序中的其他内容 。 #include using namespace std; clasS Score publi

2、c: Score(const charthe course, const char*the id r int the normal l 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()constreturn course; ) 返回课程名称 ERROR*fou

3、nd* const char*getID()constreturn &student id; ) 返回学号 int getNormal()cons treturn normal; ) 返回平时成绩 int getMidterm()constreturn midterm; ) 返回期中考试成绩 int getEndOfTerm()constreturnendofterm; 返回期末考试成绩 int getFinal()const; 返回总评成绩 private: const char*course;课程名称 char student id12; 学号 int normal;平时成绩 int mi

4、dterm;期中考试成绩 int end of term; 期末考试成绩 ; 总评成绩中平时成绩占 20,期中考试占 30,期末考试占 50,最后结果四舍五入为一个整数 ERROR*found* int getFinal()const return normal*0 2+midterm*0 3+ endofterm*0 5+0 5; int main() char English=“英语 ”; Score score(English, “12345678”, 68, 83, 92); cout using namespace std; class Class “班级 ”类 public: Cl

5、ass(const char*id, const char*room) strcpy(class id, id); *found* const char*getClasSID()const f return class id; ) 返回班号 * found* const char*getClassroom()const _) 返回所在教室房号 void changeRoomTo(const char*new room) 改换到另一个指定房号的教室 strcpy(classroom, new room); private: char class id20; 班号 char classroom20

6、; 所在教室房号 ; class Student “学生 ”类 char my idi0; 学号 char my name20;姓名 Class&my_class; i s; st在教室 public: *found* Student(const char*the_id, const char*the_name, Class&theclass): _ strcpy(my_id, theid); strcpy(my_name, the_name); const char*getID()constreturn my_id; ) const char*getName()constre turn my

7、name; ) Class getClass 0constreturn my_class; ) ; void showStudent(Student*stu) coutgetID()getName()getClass() getClassID()getClass() getClassroom()0) 当 j大于零时,做相乘操作,即完成该项的乘方动作 xJalue* =x; j一一, value+=coefi*x value; 把 i项的乘方结果乘以该项系数后加进 value中 【试题解析】 本题考查 Polynomi类,其中涉及构造函数、动态数组、析构函数和 const函数。 【解题思路】 题目要求成员函数 getValue计算多项式的值,多项式 中 x的值由参数指定,多项式的值 value为各次项的累加和。由类的定义可知数组 coef中存储的是各次项的系数,这里使用 for循环来完成题目要求,当次项为 0时, value=coef0。当次项为 1时, value=coef1*x+coef0。依次类推直到 x的最高次数。

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