您的位置:首页 > 其它

2-1 Point类的定义

2016-09-27 16:27 162 查看


2-1 Point类的定义

Time Limit: 1000MS Memory Limit: 65536KB

Submit Statistic


Problem Description

通过本题目的练习可以掌握类与对象的定义;
设计一个点类Point,它具有私有数据成员x(横坐标)、y(纵坐标);公有成员函数:SetPoint(int,int)用于设置点对象的值,ShowPoint()用于输出点对象的信息
在主函数中调用成员函数SetPoint(int,int)为点对象设置值,并调用成员函数ShowPoint()输出点的信息。


Input

 无


Output

 一对圆括号内,x和y的值用逗号间隔


Example Input




Example Output

(10,11)



这道题虽然几行代码就能过。

#include <iostream>
using namespace std;
int main()
{
cout<<"(10,11)"<<endl;
return 0;
}
但是这样水了这道题不是我的风格。。。
于是自找麻烦的写了。。。

#include <iostream>
using namespace std;
class pos
{
private:
int x=10;
int y=11;
public:
void setpoint(int nx,int ny)
{
x=nx;
y=ny;
}
void showpoint()
{
cout<<"("<<x<<","<<y<<")"<<endl;
}
};
int main()
{
pos p;
p.showpoint();
return 0;
}
可能有的地方不对,慢慢来。欢迎斧正
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: