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

上传人:赵齐羽 文档编号:502474 上传时间:2018-11-29 格式:DOC 页数:5 大小:30.50KB
下载 相关 举报
[计算机类试卷]国家二级(C++)机试模拟试卷27及答案与解析.doc_第1页
第1页 / 共5页
[计算机类试卷]国家二级(C++)机试模拟试卷27及答案与解析.doc_第2页
第2页 / 共5页
[计算机类试卷]国家二级(C++)机试模拟试卷27及答案与解析.doc_第3页
第3页 / 共5页
[计算机类试卷]国家二级(C++)机试模拟试卷27及答案与解析.doc_第4页
第4页 / 共5页
[计算机类试卷]国家二级(C++)机试模拟试卷27及答案与解析.doc_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

1、国家二级( C+)机试模拟试卷 27及答案与解析 一、程序改错题( 30分) 0 使用 VC6打开考生文件夹下的工程 RevProj8。此工程包含一个源程序文件 RevMain8.cpp。在该文件中,函数 resort的功能是:能在一个数列中,对从指定位置开始的几位数,按相反顺序重新排列,并在主函数中输出新的序列。 请改正程序中的错误,使它能得到正确结果。 注意,不要改动 main函数,不得删行或增行,也不得更改程序的结构。 源程序文件 RevMain8.cpp中的程序清单如下: /RevMain8.cpp #include instream using namespace std; void

2、 resort(int arr,int where,int amount); int main () int number 20 ,where, arrount, i; cout “Input 20 numbersn“; for (i=0; i 20; i+) cin number i; cout “How many do you want to sort: “; cin arrount; cout “n where do you want to start: “; cin where; cout “old array as follow:n“; for (i=0; i 20; i+) cou

3、t nmuber i “ “; resort (number,where, arrount); cout “n resorted array as follow:n“; for (i=0; i 20; i+) cout number i “ “; cout end1; return 0; void resort(int array,int where, int amount) int *pi, *p2, temp; p1= p2= /* * * * *FOUND * * * * */ for (;p1 ) /* * * * *FOUND * * * * */ *p1=*p2; *p2=*p1;

4、 return; 二、简单应用题( 40分) 0 请编写一个函数 void fun(int p, int n,int c),其中数组 p的元素按由小到大的顺序排列,其元素个数为 n。函数 fun()的功能是将 c插入到数组 p中,且保持数组 的升序排列。 注意:部分源程序已存在文件 PROC9.cpp中。 请勿修改主函数和其他函数中的任何内容,仅在函数 fun()的花括号中填写若干语句; 文件 PROC9.cpp的内容如下: /PROC9.cpp #include iostream #include string using namespace std; #define M 30 void f

5、un(int p ,int n,int c); int main () int ppM,n,i; int fg, c; cout “Please input n:n“; cin n; cout “Please input the n data:n“; for (i=0; i n; i+) cin pp i; cout “Please input c:n“; cin c; fun (pp, n, c); for (i=0; i n; i+) cout pp i “ “ ; cout end1; return 0; void fun(int p ,int n, int c) /* * * * *

6、* * * * 三、综合应用题( 30分) 0 使用 VC6打开考生文件夹下的工程 MyProj7。此工程包含一个源程序文件MyMain7.cpp。其中定义了类 Sample,但类 Sample的定义并不完整。 请按要求完成 下列操作,将类 Sample的定义补充完成: 定义私有数据成员 n,它是 int型的数据。请在注释 “/* *1*”之后添加适当的语句。 完成重载构造函数 Sample()的定义,使 Sample对象的默认值: n=0。请在注释“/* *2* *”之后添加适当的语句。 完成成员函数 add()的类体内的定义,使成员函数返回的 Sample对象的值 n为两类 Sample对

7、象 s1和 s2的私有成员 n的和。请在注释 “/* *3* *”之后添加适当的语句。 完成成员函数 disp()的类外定义,使其 以 “n=”的格式将 Sample对象的值输出到屏幕上。请在注释 “* *4* *”之后添加适当的语句。 注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。 源程序文件 MyMain7.cpp清单如下: /MyMain7.cpp #include iostream using namespace std; class Sample private: /* * 1* * public: Sample() /* *2* * Sample add(Sample s1, Sample s2) /* *3* * void disp(); ; void Sample: :disp() /* * 4 * * int main() Sample s1(10), s2(5), s3; cout “s1: “; s1.disp(); cout “n S2:“; s2, disp(); s3.add(s1, S2); cout “n s3.add(s1, s2)n s3:“; s3.disp(); return 0; 国家二级( C+)机试模拟试卷 27答案与解析 一、程序改错题( 30分) 二、简单应用题( 40分) 三、综合应用题( 30分)

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

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

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