问题及代码:
/*copyright(c)2016.烟台大学计算机学院
* All rights reserved,
* 文件名称:text.Cpp
* 作者:吴敬超
* 完成日期:2016年5月4日
* 版本号:codeblock
*
* 问题描述: 点类设计
* 输入描述:
* 程序输出: 输出结果
*/
#include<iostream>
using namespace std;
class Point
{
public:
Point(double x=0,double y=0);
double getX()
{
return x;
}
double getY()
{
return y;
}
void setpoint(double,double);
void show();
private:
double x;
double y;
};
Point::Point(double x,double y)
{
this->x=x;
this->y=y;
}
void Point::setpoint(double x,double y)
{
this->x=x;
this->y=y;
}
void Point::show()
{
cout<<"该点坐标为"<<x<<","<<y<<endl;
}
int main()
{
Point point(5.5,2.3);
point.show();
point.setpoint(9.6,7.3);
point.show();
return 0;
}
运行结果: