三、簡單應(yīng)用題(24分)
42請使用VC6或使用【答題】菜單打開考生文件夾proj2下的工程proj2,該工程中包含一個程序文件main.cpp,其中有日期類Date、人員類Person及排序函數(shù)sortByName和主函數(shù)main的定義。請在程序中的橫線處填寫適當(dāng)?shù)拇a并刪除橫線,以實現(xiàn)上述類定義和函數(shù)定義。此程序的正確輸出結(jié)果應(yīng)為:
按姓名排序
排序前:
張三 男 出生日期:1978年4月20日
王五 女 出生日期:1965年8月3日
楊六 女 出生日期:1965年9月5日
李四 男 出生日期:1973年5月30日
排序后:
李四 男 出生日期:1973年5月30日
王五 女 出生日期:1965年8月3日
楊六 女 出生日期:1965年9月5日
張三 男 出生日期:1978年4月20日
注意:只能在橫線處填寫適當(dāng)?shù)拇a,不要改動程序中的其他內(nèi)容,也不要刪除或移動“//****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()函數(shù)比較姓名,返回一個正數(shù)、0或負(fù)數(shù),分別表示大于、等于、小于
int compareName(const Person&p)const{
//***************found*****************
————}
void show(){
cout<
cout<
//**************found**************
__________________________//顯示出生月
<< “birth—date.getDay()<<”日”;//顯示出生日
}
};
void sortByName(Person ps[],int size){
//將人員數(shù)組按姓名排列為升序
for(int i=0;i
//采用選擇排序算法
int m=i;
for(int j=i+1;j
if(ps[j].eompareName(ps[m])<0)
m=j;
if(m>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<
cout<
for(i=0;i
sortByName(staff,size);
cout<
for(i_0;i
cout<
return 0;
{
參考解析:
(1)is—male(is—male),birth—date(birth—date)
(2)retum stremp(nalne,P.getName());
(3)“birth—date.getMonth()“”月”
相關(guān)推薦:
各地2016年全國計算機(jī)等級考試報名時間匯總
各地2016年計算機(jī)等級考試準(zhǔn)考證打印時間匯總
各地2016年全國計算機(jī)等級考試費用匯總
2016年計算機(jī)等級考試備考沖刺專題
考試吧特別策劃:2016年計算機(jī)等級考試報考指南