📄 test11.txt
字号:
class Point{
protected:
int x,y;
public:
Point(int a,int b){ x=a;y=b; }
};
class Rectangle:private Point{
int height,width;
public:
Rectangle(int x0,int y0,int h,int w)
{
height=h;
width=w;
}
double Area()
{
return height*width;
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -