清高手帮忙,设计一个vc++程序
设有一个描述坐标点的CPoint类,其私有变量x和y代表一个点的x,y坐标值。编写程序实现以下功能:利用构造函数传递参数,并设其默认参数值为60和75,利用成员函数dis...
设有一个描述坐标点的CPoint类,其私有变量x和y代表一个点的x,y坐标值。编写程序实现以下功能:利用构造函数传递参数,并设其默认参数值为60和75,利用成员函数display()输出这一默认的值;利用公有成员函数setpint()将坐标值修改为(80,150),并利用成员函数输出修改后的坐标值
展开
1个回答
展开全部
#include <iostream.h>
class CPoint
{
private:
int x;
int y;
public:
CPoint()
{
x=60;
y=75;
}
CPoint(int x,int y)
{
this->x=x;
this->y=y;
}
void Display()
{
cout<<"point("<<x<<","<<y<<")"<<endl;
}
void setpoint(int x,int y)
{
this->x=x;
this->y=y;
}
};
void main()
{
CPoint point1;
point1.Display();
point1.setpoint(80,150);
point1.Display();
CPoint point2(100,100);
point2.Display();
}
class CPoint
{
private:
int x;
int y;
public:
CPoint()
{
x=60;
y=75;
}
CPoint(int x,int y)
{
this->x=x;
this->y=y;
}
void Display()
{
cout<<"point("<<x<<","<<y<<")"<<endl;
}
void setpoint(int x,int y)
{
this->x=x;
this->y=y;
}
};
void main()
{
CPoint point1;
point1.Display();
point1.setpoint(80,150);
point1.Display();
CPoint point2(100,100);
point2.Display();
}
博思aippt
2024-07-20 广告
2024-07-20 广告
**AI一键生成PPT免费版**为满足广大用户的需求,我们博思云创科技特推出AI一键生成PPT免费版。用户只需简单输入需求,AI技术便能智能分析并快速生成高质量PPT。此版本功能强大且易于操作,无需专业设计技能,即可轻松打造出令人满意的演示...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询