📄 310.cpp
字号:
//310.cpp
#include <iostream.h>
class Building
{
private: float price ,hall;
public:
Building(float p,float h)
{ price =p;hall=h ;}
float GetPrice(){ return price;}
float GetHall(){ return hall;}
};
class FamilyHouse:public Building
{
private: float w;
void GetHall(){ }
public:
FamilyHouse(float a,float b,float c):Building(a,b){w=c;}
float Getw(){ return w;}
};
main()
{
FamilyHouse t(800,900,100);
cout << "price=" << t.GetPrice()
<< " Area=" << t.Getw()<<endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -