?? cylinderdef.cpp
字號:
float Cylinder::area()const
{
return 2*Circle::area()+2*3.1415*r*height;
}
float Cylinder::volume()const
{
return Circle::area()*height;
}
void Cylinder::showname()const
{
cout<<"the information of the cylinder: ";
}
void Cylinder::display()const
{
Circle::display();
cout<<"the height="<<height<<endl;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -