问答题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.cpp,其中有日期类Date、人员类Person及排序函数sortByName和主函数main的定义。请在程序中的横线处填写适当的代码并删除横线,以实现上述类定义和函数定义。此程序的正确输出结果应为: 按姓名排序 排序前: 张三 男 出生日期:1978年4月20日 王五 女 出生日期:1965年8月3日 杨六 女 出生日期:1965年9月5日 李四 男 出生日期:1973年5月30日 排序后: 李四 男 出生日期:1973年5月30日 王五 女 出生日期:1965年8月3日 杨六 女 出生日期:1965年9月5日 张三 男 出生日期:1978年4月20日 注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。 #include using namespace std; class Date{//日期类 int year,month,day;//年、月、日 public: Date(int year,int month,int day):year(year),month(month),day(day){} int getYear()const{return year;} int getMonth()const{return month;} int getDay()const{return day;} }; class Person{ //人员类 char name[14];//姓名 bool is—male;//性别,为true时表示男性 Date birth—date;//出生日期 public: Person(char*name,bool is—male,Date birth_date) //***************found*************** :—————— { { strcpy(this一>name,name); } const char * getName()const{return name;} bool isMale()const{return is—male;} Date getBirthdate()const{return birth—date;} //利用strcmp()函数比较姓名,返回一个正数、0或负数,分别表示大于、等于、小于 int compareName(const Person&p)const{ //***************found***************** ————} void show(){ cout<i){ Person P=ps[m]; ps[m]=ps[i]; ps[i]=p; } } } int main(){ Person staff[]={ Person(”张三”,true,Date(1978,4,20)), Person(”王五”,false,Date(1965,8,3)), Person(”杨六”,false,Date(1965,9,5)), Person(”李四”,tme,Date(1973,5,30)) }; const int size=sizeof(staff)/sizeof(staff[0]); int i; eout<
【正确答案】(1)is—male(is—male),birth—date(birth—date) (2)retum stremp(nalne,P.getName()); (3)“birth—date.getMonth()“”月”
【答案解析】