freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

面向?qū)ο蟪绦蛟O計復習資料-資料下載頁

2025-04-17 12:24本頁面
  

【正文】 ow(){cout 我能在水中游又能在天上飛! endl。}}。void main(){ Amphibian a。 //正確的為Amphibian a(2380)。 實參任意正數(shù) ()。}4. 下列程序定義了運算符重載,根據(jù)注釋找出錯誤寫出正確的語句。運算符重載includeclass M{ int a,b。public: M(){a=b=0。} M(int aa,int bb){a=aa,b=bb。} M operator + (int x)。 //正確的為 (M amp。x)。 M operator (M x)。 //正確的為 (M amp。x)。 void OutB() { couta39。 39。bendl。}}。M operator +(Mamp。 x) //正確的為 M M::operator +(Mamp。 x){ M r。 =a+。 =b+。 return r。}M M::operator (Mamp。 x){ int r。 //正確的為M r =。 =。 return r。}void main(){ M x(3,5),y(8,4),z1,z2。 z1=x+y。z2=xy。 ()。()。}5根據(jù)注釋找出錯誤寫出正確的語句classCommonBase{ public:  int x。 }。class DeriveCommonA::public CommonBase //正確的為class DeriveCommonA:public CommonBase  { public:  int y。 }。classDeriveCommonB:publicCommonBase{ public:  int z。 }。classOverlapping:publicDeriveCommonA。publicDeriveCommonB//正確的為class Overlapping:public DeriveCommonA,public DeriveCommonB{ public:  voidDisplay()  { coutValuesare:endl。}  int main()  { Overlappingov?! ?1。 //正確的為ov. DeriveCommonA::x=1  =2。  =3?! ?)?! eturn0。 }五、編程題1. 編寫一個程序,聲明抽象基類Shape,由它派生出3個派生類:Circle(圓形)、Rectangle(矩形)、Triangle(三角形),用一個函數(shù)printArea分別輸出以上3者的面積,3個圖形的數(shù)據(jù)在定義對象時給定。class Shape{ int n。public: virtual double area()const=0。}。class Circle:public Shape{ public: Circle(double r):radius(r){} virtual double area()const{return *radius*radius。}protected: double radius。}。class Rectangle:public Shape{ public: Rectangle(double w,double h ):width(w),height(h){} virtual double area()const{return width*height。}protected: double width,height。}。class Tirangle:public Shape{ public: Tirangle(double w,double h ):width(w),height(h){} virtual double area()const{return *width*height。}protected: double width,height。}。void printArea(const Shape amp。s){ cout()endl。}void main(){ Circle c(10)。 cout圓的面積=。 printArea(c)。 Rectangle r1(22,66)。 cout矩形面積=。 printArea(r1)。 Tirangle t(23,66)。 cout矩形面積=。 printArea(t)。 }設計描述小汽車(car)、公共汽車(bus)、和卡車(truck)的系統(tǒng)類,提取其中的共性建立基類為抽象類,個類能分別顯示不同車型的載客人數(shù)和載重量,測試這個類。include include stringclass Base {public: virtual void disp()=0。}。class Car:public Base{ int num。public: Car(int n){num=n。} void disp() { coutCar:endl。 cout載客人數(shù):numendl。 }}。class Bus:public Base{ int num。public: Bus(int n){num=n。} void disp() { coutBus:endl。 cout載客人數(shù):numendl。 }}。class Truck:public Base{ int num。public: Truck(int n){num=n。} void disp(){ coutTruck:endl。 cout載重量:numendl。 }}。void main(){ Base *p。 Car c(4)。 Bus b(50)。 Truck t(4000)。 p=amp。c。 pdisp()。 p=amp。b。 pdisp()。 p=amp。t。 pdisp()。}20 / 2
點擊復制文檔內(nèi)容
教學教案相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1