1、国家二级 C+机试(操作题)模拟试卷 342及答案解析(总分:8.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.请使用 VC6或使用【答题】菜单打开考生文件夹 projl下的工程 projl,其中在编辑窗口内显示的主程序文件中定义有类 ABC和主函数 main。程序文本中位于每行“ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应该是: 21 23 注意:只修改每个“ERROR*found*”下面的一行,不要改动程序中的其他任何内容。#includeiostreamUSing namespace std;class ABCpubli
2、c:ERROR*found* ABC()a=0;b=0;c=0; ABC(int aa,int bb,int:CC); void Setab() +a,+b;) int Sum()return a+b+C;)private: int a,b; const int C;,ABC:ABC(int aa, int bb, int cc):c(CC)a=aa;b=bb;)int main() ABC X(1,2,3),y(4,5,6); ABC Z,*w= private: int level; ; void Employee:print()const cout”Name:”name endl; co
3、ut”Dept:”dept 一endl; VOid Manager:print()const *found* cout ”Level:” level endl;int main() Employee*emp=new Manager(”Sally Smith”,”Sales”,2); emp 一print(); delete emp;return 0;(分数:2.00)_三、综合应用题(总题数:2,分数:4.00)3.请使用 VC6或使用【答题】菜单打开考生文件夹 proj3下的工程文件 proj3。本题创建一个小型字符串类,字符串长度不超过 100。程序文件包括 proj3h、proj3cpp
4、、writeToFileobj。补充完成重载赋值运算符函数,完成深复制功能。 屏幕上输出的正确结果应该是: Hello! Happy new year! 要求: 补充编制的内容写在“*333*”与“*666*”两行之间。不得修改程序的其他部分。 注意: 程序最后调用 writeToFile函数,使用另一组不同的测试数据,将不同的运行结果输出到文件 outdat 中。输出函数 writeToFile已经编译为 obj文件。proj3h#includeiostream#includeiomanipusing namespace std;class MiniString public: friend
5、 ostream如果 string2是空指针,则为空字符串 MiniStringoperator=(const MiniStringotherString); MiniString(const char*s =”):length(S!=0)?strlen(S):0)构造函数 sPtr=0; if(length!=0) setString(S); 一 MiniString()析构函数 deletesPtr; private: int length;字符串长度 char*sPtr; 指向字符串起始位置 void setString( const char *string2 /辅助函数 sPtr=n
6、ew charstrlen(string2)+1; 分配内存 if(string2!=0)strcpy(SPtr,string2);如果 string2不是空指针,则复制内容 else sPtr0=0;如果 string2是空指针,则为空字符串 ;proj3cpp#includeiostream#includeiomanipusing namespace std;#include”proj 3h”MiniString使用重载的赋值运算符str2modString(”Happy new year!”); coutstr1n;coutstr2n;writeToFile(”);return 0;(分
7、数:2.00)_4.请使用 VC6或使用【答题】菜单打开考生目录 proj3下的工程文件 proj3,此工程包含一个源程序文件proj3cpp,其功能是从文本文件 indat 中读取全部整数,将整数序列存放到 intArray类的对象myArray中,然后对整数序列按非递减排序,最后由函数 writeToFile选择序列中的部分数据输出到文件outdat 中。文件 indat 中的整数个数不大于 300个。 要求: 补充编制的内容写在“*333*”与“*666*”两行之间。实现对整数序列按非递减排序,并将排序结果在屏幕上输出。不得修改程序的其他部分。 注意:程序最后已将结果输出到文件 outd
8、at 中。输出函数 writeToFile已经给出并且调用。/proj 3cpp#includeiostream#includefstream#includecstringusing namespace std;class intArrayprivate: int*array;整数序列首地址 int length;序列中的整数个数 public: 构造函数,从文件中读取数据用于初始化新对象。参数是文件名 intArray(char*filename); void sort();对整数序列按非递减排序 一 intArray(); void writeTOFile(char*filename);
9、; intArray:intArray(char*filename) ifstream myFile(filename); int len=300; array=new int1en; length=0; while(myFilearraylength+); length-; myFileclose(); void intArray:sort() *333* *666* intArray:-intArray() deletearray;void intArray:writeToFile(char*filename) int step=0; ofstream outFile(filename);
10、 for(int i=0;ilength;i=i+step) outFilearrayiendl; step+; outFileclose(); void main() intArray myArray(”indat”); myArraysort(); myArraywriteTOFile(”outdat”); (分数:2.00)_国家二级 C+机试(操作题)模拟试卷 342答案解析(总分:8.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:2.00)1.请使用 VC6或使用【答题】菜单打开考生文件夹 projl下的工程 projl,其中在编辑窗口内显示的主程序文件中定义有类 A
11、BC和主函数 main。程序文本中位于每行“ERROR*found*”之后的一行语句有错误,请加以改正。改正后程序的输出结果应该是: 21 23 注意:只修改每个“ERROR*found*”下面的一行,不要改动程序中的其他任何内容。#includeiostreamUSing namespace std;class ABCpublic:ERROR*found* ABC()a=0;b=0;c=0; ABC(int aa,int bb,int:CC); void Setab() +a,+b;) int Sum()return a+b+C;)private: int a,b; const int C;
12、,ABC:ABC(int aa, int bb, int cc):c(CC)a=aa;b=bb;)int main() ABC X(1,2,3),y(4,5,6); ABC Z,*w= private: int level; ; void Employee:print()const cout”Name:”name endl; cout”Dept:”dept 一endl; VOid Manager:print()const *found* cout ”Level:” level endl;int main() Employee*emp=new Manager(”Sally Smith”,”Sal
13、es”,2); emp 一print(); delete emp;return 0;(分数:2.00)_正确答案:(正确答案:(1)name_(name),dept_(dept) (2)return dept_; (3)Employee(name,dept),level_(1evel) (4)Employee:print();)解析:解析:(1)主要考查考生对构造函数的掌握,这里使用成员列表初始化法对私有成员初始化。 (2)主要考查考生对成员函数的掌握,题目要求返回部门名称,因此这里是一条返回语句。函数要求返回的类型为 string,因此直接返回 dept_即可。 (3)主要考查考生对构造函数
14、的掌握,因为 Manager类是Employee类的派生类,因此它的构造函数要先对基类初始化,应使用成员列表初始化。 (4)主要考查考生对虚函数的掌握,因为 Manager类是 Employee类的派生类,因此它的 print函数可以先调用基类的print函数,再输出自身要输出的数据,故为 Employee:print();。三、综合应用题(总题数:2,分数:4.00)3.请使用 VC6或使用【答题】菜单打开考生文件夹 proj3下的工程文件 proj3。本题创建一个小型字符串类,字符串长度不超过 100。程序文件包括 proj3h、proj3cpp、writeToFileobj。补充完成重载
15、赋值运算符函数,完成深复制功能。 屏幕上输出的正确结果应该是: Hello! Happy new year! 要求: 补充编制的内容写在“*333*”与“*666*”两行之间。不得修改程序的其他部分。 注意: 程序最后调用 writeToFile函数,使用另一组不同的测试数据,将不同的运行结果输出到文件 outdat 中。输出函数 writeToFile已经编译为 obj文件。proj3h#includeiostream#includeiomanipusing namespace std;class MiniString public: friend ostream如果 string2是空指针
16、,则为空字符串 MiniStringoperator=(const MiniStringotherString); MiniString(const char*s =”):length(S!=0)?strlen(S):0)构造函数 sPtr=0; if(length!=0) setString(S); 一 MiniString()析构函数 deletesPtr; private: int length;字符串长度 char*sPtr; 指向字符串起始位置 void setString( const char *string2 /辅助函数 sPtr=new charstrlen(string2)
17、+1; 分配内存 if(string2!=0)strcpy(SPtr,string2);如果 string2不是空指针,则复制内容 else sPtr0=0;如果 string2是空指针,则为空字符串 ;proj3cpp#includeiostream#includeiomanipusing namespace std;#include”proj 3h”MiniString使用重载的赋值运算符str2modString(”Happy new year!”); coutstr1n;coutstr2n;writeToFile(”);return 0;(分数:2.00)_正确答案:(正确答案:len
18、gth=otherStringlength; 把对象字符串 otherstrinq的长度赋值给变量 lenqth setString(otherStringsPtr); 调用函数 setstring,实现给类变量 sptr 分配空间,以及逐个把对象 otherstrinq字符串的值复制到 sptr中 return*this; 返回被赋值的对象)解析:解析:主要考查考生对运算符重载的掌握,题目要求重载赋值运算符函数。要重载的运算符是“=”,即赋值的意思。提示:可以调用辅助函数 setString。该函数的功能是复制形参的字符串到 sPtr中,因此,首先复制 length,其次通过函数 setSt
19、ring复制 sPtr,最后按要求返回*this;。4.请使用 VC6或使用【答题】菜单打开考生目录 proj3下的工程文件 proj3,此工程包含一个源程序文件proj3cpp,其功能是从文本文件 indat 中读取全部整数,将整数序列存放到 intArray类的对象myArray中,然后对整数序列按非递减排序,最后由函数 writeToFile选择序列中的部分数据输出到文件outdat 中。文件 indat 中的整数个数不大于 300个。 要求: 补充编制的内容写在“*333*”与“*666*”两行之间。实现对整数序列按非递减排序,并将排序结果在屏幕上输出。不得修改程序的其他部分。 注意:
20、程序最后已将结果输出到文件 outdat 中。输出函数 writeToFile已经给出并且调用。/proj 3cpp#includeiostream#includefstream#includecstringusing namespace std;class intArrayprivate: int*array;整数序列首地址 int length;序列中的整数个数 public: 构造函数,从文件中读取数据用于初始化新对象。参数是文件名 intArray(char*filename); void sort();对整数序列按非递减排序 一 intArray(); void writeTOFil
21、e(char*filename); ; intArray:intArray(char*filename) ifstream myFile(filename); int len=300; array=new int1en; length=0; while(myFilearraylength+); length-; myFileclose(); void intArray:sort() *333* *666* intArray:-intArray() deletearray;void intArray:writeToFile(char*filename) int step=0; ofstream
22、outFile(filename); for(int i=0;ilength;i=i+step) outFilearrayiendl; step+; outFileclose(); void main() intArray myArray(”indat”); myArraysort(); myArraywriteTOFile(”outdat”); (分数:2.00)_正确答案:(正确答案:for(int i =0;i length; +i) 遍历整个数组 for(int j=i;jlength;+j) 从 i+遍历整数组 if(arrayiarrayj) 如果 arragiarrayj,把 arrayi与 arrayi进行对换 int temp; 定义一个临时变量 temp temp=arrayi; 把arrayi值放到变量 temp arrayi=arrayj; 把 arrayj值赋给 arrayi arrayj=temp; 把变量 temp存放在值 arrayj中 for(int a=0;alength; +a) 遍历数组,把数组中的所有元素打印到控制台上 coutarraya”;)解析:解析:题目要求对整数序列按非递减排序,要排序就必须要有比较,因此定义两个下标 i和 j,按题目非递减排序要求,当 arrayi比 arrayj大时就交换其值,利用中间变量 temp来实现。
copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1