📄 circle.h
字号:
class Circle:public Point
{
protected:
float r;
public:
Circle(float a,float b,float c):Point(a,b),r(c){}
float area()const;
void showname()const { cout<<"the information of the circle :"; }
void display()const;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -