用c++编写一个程序定义一个点类,该类包含整形坐标x,y以及用于设置坐标值的函数,名为setxy()参数自行确定,以及用于显示坐标的函数displayxy()参数自行设置。 合理编写主函数,能够实现(3,4)以及(5,6)固定两个点对象的参数设置,以及信息输出 【输入形式】无数据输入,请一定使用类的定义以及对象的创建的相关知识 【输出形式】输出两个固定点的相关信息 【样例输入】 【样例输出】 The first point is:(3,4) The second point is:(5,6)
时间: 2024-03-24 07:37:24 浏览: 154
C++判断一个点是否在圆内的方法
以下是实现要求的代码:
```cpp
#include <iostream>
using namespace std;
class Point {
private:
int x, y;
public:
void setxy(int a, int b) {
x = a;
y = b;
}
void displayxy() {
cout << "(" << x << "," << y << ")";
}
};
int main() {
Point p1, p2;
p1.setxy(3, 4);
p2.setxy(5, 6);
cout << "The first point is:";
p1.displayxy();
cout << endl;
cout << "The second point is:";
p2.displayxy();
cout << endl;
return 0;
}
```
输出结果为:
```
The first point is:(3,4)
The second point is:(5,6)
```
阅读全文