📄 main.cpp
字号:
#include<iostream.h>
class Point
{
/*****found****/
int *x,y;
public:
Point(int x=0,int y=0)
{
/*****found****/
this->x = new int[x];
/*****found****/
this->y = new int[y];
}
~Point()
{
delete x;
delete y;
}
int Mul()
{
return *x * *y;
}
void print()
{
cout<<x<<endl;
}
};
void main()
{
Point obj(5,6);
cout<<obj.Mul()<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -