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

admin2021-09-05  25

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2。此工程中包含一个源程序文件main.cpp,其中有日期类Date、人员类Person及排序函数sortByAge和主函数main的定义。请在横线处填写适当的代码并删除横线,以实现该程序。该程序的正确输出结果应为:
排序前:
张三男出生日期:1978年4月20日
王五女出生日期:1965年8月3日
杨六女出生日期:1965年9月5日
李四男出生日期:1973年5月30日
排序后:
张三男出生日期:1978年4月20日
李四男出生日期:1973年5月30日
杨六女出生日期:1965年9月5日
王五女出生日期:1965年8月3日
注意:只在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
{}include
usingnamespacestd;
classDate{//日期类
intyear,month,day;//年、月、日
public:
Date(intyear,intmonth,intday):
year(year),month(month),day(day){}
intgetYear()const{returnyear;}
intgetMonth()const{return
month;}
intgetDay()const{returnday;}
};
classPerson{//人员类
charname[14];//姓名
boolismale;//性别,为true时表示男性
Datebirthdate;//出生日期
public:
Person(char*name,boolismale,
Datebirthdate):ismale(ismale),
birth_date(birth_date){
//**********found**********
strcpy(this->name,________);
}
constchar*getName()const{returnname;}
boolisMale()const{returnis_male;}
DategetBirthdate()const{returnbirth_date;}
intcompareAge(constPerson&p)
const{//比较两个人的年龄,返回正数、0或负数分别表示大于、等于和小于intn;
n=p.birthdate.getYear()
birthdate.getYear();
if(n!=0)returnn;
//**********found**********
if(n!=0)returnn;
returnP.birth_date.getDay()birthdate.getDay();
}
voidshow(){
cout<cout<//**********found**********
<<________//显示性别
(“男”或“女”,双引号内不合空格)
<<"出生日期:"//显示出生日期
<<<  }
};
voidsortByAge(Personps[],intsize)
{
//对人员数组按年龄的由小到大的顺序排序
for(inti=0;i{//采用挑选排序算法
intm=i;
for(intj=i+1;jif(ps[j].compareAge(ps[m])<0)
m=j;
if(m>i){
//**********found**********
PersonP=________
ps[m]=ps
ps=p;
    }
  }
}
intmain(){
Personstaff[]={
Person("张三",true,Date(1978,4,20)),
Person("王五",false,Date(1965,8,3)),
Person("杨六",false,Date(1965,9,5)),
Person("李四",true,Date(1973,5,30))
};
constintsize=sizeof(staff)/sizeof(staff[0]);
inti;
cout<for(i=0;i
show();
sortByAge(staff,size);
cout<for(i=0;i.
show();
cout<return0;
}

选项

答案(1)name (2)n = p.birth_date.getMonth() - birth_date.getMonth(); (3)(is_male ? "男" : "女" ) (4)ps[m];

解析 (1)主要考查考生对strcpy函数的掌握,strcpy函数的功能是复制字符串,其格式为:sercpy(字符串1,字符串2);。
(2)主要考查考生对成员函数的掌握,函数功能是比较两个人的年龄,返回正数、0 或负数分别表示大于、等于和小于。前面语句比较了年份,因此这里应该比较月份。
(3)主要考查考生对成员函数的掌握,程序要求显示性别("男"或"女",双引号内不含空格),因此这里要进行判断,使用三目运算符? :完成语句。
(4)这里是一个变量交换操作,使用中间变量p交换ps[m]和ps的值。
转载请注明原文地址:https://kaotiyun.com/show/Ez5p777K
0

随机试题
最新回复(0)