1、国家二级 C+机试(操作题)模拟试卷 48及答案与解析 一、基本操作题 1 使用 VC6打开考生文件夹下的源程序文件 modil cpp,但该程序运行时有错,请改正程序中的错误,使程序输出的结果为: number1=a number2=a number1=a number2=b 注意:错误的语句在 *error*的下面,修改该语句即可。 1 #include 2 class CMyClasS 3 4 public: 5 *error* 6 friend void SetValue(CMyClassobj, char C) 7 8 obj numberl=C ; 9 obj number2=C
2、; 10 11 *error* 12 void SetValue(CMyClass obj, char C1, char c2) 13 14 obj numberl=cl; 15 obj number2=c2; 16 17 void display() 18 19 cout 2 #include 3 #define NUM 50 4 int ANUMNUM= 5 6 10, 13, 59, 70, 6, 7 2, 40, 89, 92, 9, 8 14, 55, 71, 11, 19 , 9 (79, 68, 83, 97, 101, 10 102, 10001, 23, 45 11 ; 12
3、 bool isPrime(int n) 13 14 if(n=1) 15 return false ; 16 if(n=2) 17 return true; 18 for(int i=2 ; i 2 class CHumanInfo 3 4 private: 5 int height ; 6 int weight; 7 *1* 8 9 public: 10 *2* 11 12 : height(ht), weight(wt), bloodType(bt); 13 CHumanlnfo(CHumanInfo&h1): height(h1 height), 14 weight(h1 weight
4、), bloodType(h1 bloodType); 15 int GetHeight() 16 17 return height ; 18 19 int GetWeight() 20 21 return weight; 22 23 int GetBloodType() 24 25 return bloodType ; 26 27 void SetInfo(int ht, intwt, char bt); 28 void Di splay(); 29 ; 30 *3* 31 32 33 height=ht ; 34 weight=wt; 35 bloodType=bt; 36 37 void CHumanInfo: Display() 38 39 cout: (),故第 3个标识下应添加“voidCHumanlnfo: Setlnfo(int ht, int wt, char bt)”。 (4)调用函数 Setlnf00需要 3个参数,程序要求把对象 d2的三个私有数据成员分别设定为身高 170,体重 64,血型为 B,即把这三个值传入函数 Setlnfo(),因此第4个标识下应添加 “h2 Setlnfo(170, 64, B); ”。