四、綜合應用題(18分)
使用VC++6.0打開考生文件夾下的源程序文件3.cpp。其中定義的類不完整,按要求完成下列操作,將類的定義補充完整。
(1)基類People完成打印功能,定義其中的打印函數(shù)為
虛函數(shù),請在注釋1后添加適當?shù)恼Z句。
(2)類Boy繼承于People,在構造函數(shù)中設置性別為1,
請在注釋2后添加適當?shù)恼Z句。
(3)類Girl繼承于People,在構造函數(shù)中設置性別為0,請在注釋3后添加適當?shù)恼Z句。
(4)實現(xiàn)函數(shù)fun,用于傳遞不同的類型,打印出性別,請在注釋4后添加適當?shù)恼Z句。
輸出的內容如下:
Sex=Boy
Sex=Girl
注意:除在指定位暨添加語句之外,請不要改動程序中的其他內容。
試題程序:
#include
classPeople
{
public:
//********1********
voidprint(){}
intsex;
};
classBoy:publicPeople
{
publiC:
Boy()
{
//********2********}
voidprint()
{
cout<<"Boy"< }
};
classGirl:publicPeople
{
public:
Girl()
{
//********3********}
voidprint()
{
cout<<"Girl"< }
};
//********4********{
cout<<"Sex=";
p.print();
}
intmain()
{
Boym:
fun(m);
Girln:
fun(n);
return0;
}
2015年全國職稱計算機考試教材(2007模 .. 定價:¥225 優(yōu)惠價:¥213 更多書籍 | |
全國職稱計算機考試速成過關系列套裝:W .. 定價:¥133 優(yōu)惠價:¥133.0 更多書籍 |