请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.epp,其中有日期类Date、人员类Person及排序函数sortByName和主函数main的定义。请在程序中的横线处填写适当的代码并删除横线,以

admin2016-08-19  40

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.epp,其中有日期类Date、人员类Person及排序函数sortByName和主函数main的定义。请在程序中的横线处填写适当的代码并删除横线,以实现上述类定义和函数定义。此程序的正确输出结果应为:
  按姓名排序
  排序前
  张三男  出生日期:1978年4月20日
  王五女  出生日期:1965年8月3日
  杨六女出生日期:1965年9月5日
  李四男  出生日期:1973年5月30日
  排序后:
  李四男  出生日期:1973年5月30日
  王五女出生日期:1965年8月3日
  杨六女出生13期:1965年9月5日
  张三男  出生日期:1978年4月20日
  注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
1   #include
2   using namespace std;
3   class Date {  //日期类
4   int year,month,day;//年、月、日
5   public:
6   Date(int year,int month,int day):year(year),month(month),day(day){)
7  int getYear()const{return year;}
8  int getMonth()const{return month;}
9  int getDay()const{return day;}
10   };
11   class Person{  //人员类
12  char name[14];//姓名
13  bool is male;//性别,为true时表示男性
14   Date birth date;//出生日期
15   public:
16   Person(char*name,bool is_male,Date birth_date)
17    //**********found**********
18    :_______
19    {
20    strcpy(this->name,name);
21    }
22    const char*getName()const{re-turn name;}
23    bool isMale()const{return is male;}
24   Date getBirthdate()const{  return birth_date;}
25    //利用strcmp()函数比较姓名,返回一个正数、0或负数,分别表示大于、等于、小于
26    int compareName(const Person&p)const{
27    //**********found**********
28   ________;
29    void show(){
30    cout<31    cout<32    //**********found**********
33   _______//显示出生月
34    <35    }
36    };
37  void sortByName(Person ps[],int size){
38  //将人员数组按姓名排列为升序
39    for(int i=0;i40  //采用选择排序算法
41    int m=i;
42    for(int j=i+1;j43    if(ps[j].compareName(ps[m])<0)
44    m=j;
45    if(m>i){
46   Person p=ps[m];
47   ps[m]=ps
48    ps=P;
49    }
50    }
51  }
52
53  int main(){
54   Person staff[]={
55  Person("张三",true,Date(1978,4,2 0)),
56  Person("王五",false,Date(1965,8,3)),
57  Person("杨六",false,Date(1965,9,5)),
58  Person("李四",true,Date(1973,5,3 0))
59    };
60    const int size=sizeof(staff)/si-zeof(staff[0]);
61    int i;
62    cout<63    cout<64    for(i=0;i.show();
65    sortByName(staff,size);
66    cout<67    for(i=0;i.show();
68    cout<69    return 0;
70  }

选项

答案(1)is_male(is_male),birth_date(birth_date) (2)return strcmp(name,p.getName()); (3)<
解析 (1)主要考查考生对构造函数的掌握,由函数体内strcpy(this->name,name);可知,要使用成员列表初始化的成员为is_male和birth_date。
    (2)主要考查考生对strcmp()函数的掌握,先看程序对该函数的功能要求:利用strcmp()函数比较姓名,返回一个正数、0或负数,分别表示大于、等于、小于。因为trcmp()函数的功能是比较字符串大小,因此可以直接被return语句调用:return strcmp(name,p.getName());。
    (3)主要考查考生对成员函数的掌握,程序的注释为:显示出生月,由此可以知道这里要输出出生月份,直接调用函数getMonth()即可。
转载请注明原文地址:https://kaotiyun.com/show/w4Np777K
0

最新回复(0)