1、国家二级 C+机试(操作题)模拟试卷 388及答案与解析 一、基本操作题 1 使用 VC6打开考生文件夹下的源程序文件 modil cpp,但该程序运行时有错,请改正程序中的错误,使程序输出的结果为: 1 0 注意:错误的语句在 *error*的下面,修改该语句即可。 #include struct Struct union int a; char C4; ; int b; *error* void mein() Struct m; *error* m c0=0; m c1=0; m c2=0; *error* m c3=1; m b=m c3; cout #include int fun(i
2、nt n) int msin() int i=1 2 3 4; cout Class TeStClass public: TestClass(int data=0) this-data=data; this一 next=NULL; , int data; TestClass* mext; , void Insert(TestClass*P, int data) TestClass*temp=new TestClass(data); TeStClass*pparent=p; TeStClass*pNext=p一 next; while(pNext) if(datapNext一 data) *1*
3、 temp一 next=pNext; return; E1se f pParent=pNext; *2* if(pNext=NULL) pParent一 next=temp; retuen; void printf(TestClass*P) *3* while() coutnext一 datanext; coutnext; delete temp1; temp1=temp2; Void main() int i=0; TestClass head; dp int data; coutdata; if(data=0)break; Insert(&head, data); while(1); pr
4、intf(&head); Delete(&head); return; 国家二级 C+机试(操作题)模拟试卷 388答案与解析 一、基本操作题 1 【正确答案】 (1); (2)m c0=1; (3)m c3=0; 【试题解析】 程序当中定义了一个结构体 Struct, Struct内含有 2个成员变量:共用体和整型变量 b,共用体由整型变量 a和字符数组 c4组成, int型变 量 32位,而 c4NI好也是 32位,因此 a和字符数组 c4存放在同一内存单元中。 二、简单应用题 2 【正确答案】 int i, a4, t; a0=n 10 ; 取整型 n的第一位数字 a1=n 100 1
5、0; 取整型 n的第 2位数字 a2=n 1000 100; 取整型 n的第 3位数字 a3=n 1000; 取整型 n的第 4位数字 for(i: 0; inext=temp; (2)添加语句: pNext=pNext一 next; (3)将 “while()”补充完整为: while(p一 next!=NULL) (4)将 “TestClass*templ=; ”补充完整为: TestClasS*templ=p一 next; 【试题解析】 在 VC环境下打开程序,根据题干给出的几条功能要求,对程序中给出注释下的内容逐个补全或修改。从已给定源程序的 main主函数开始入手,可以看出程序通过调 用类 TestClass实现各种输出操作。