1121 平面中的点 point类Ⅰ

来源:互联网 发布:大数据彩票分析 编辑:程序博客网 时间:2024/06/07 09:07

话不多说,先上题目为敬~!

Problem A: 平面上的点——Point类 (I)

Time Limit: 1 Sec  Memory Limit: 4 MB
Submit: 8255  Solved: 3705
[Submit][Status][Web Board]

Description

在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯一确定。现在我们封装一个“Point类”来实现平面上的点的操作。

根据“append.cc”,完成Point类的构造方法和show()方法。

接口描述:
Point::show()方法:按输出格式输出Point对象。

Input

输入多行,每行为一组坐标“x,y”,表示点的x坐标和y坐标,x和y的值都在double数据范围内。

Output

输出为多行,每行为一个点,X坐标在前,Y坐标在后,Y坐标前面多输出一个空格。每个坐标的输出精度为最长16位。输出格式见sample。

C语言的输入输出被禁用。

Sample Input

1,23,32,1

Sample Output

Point : (1, 2)Point : (3, 3)Point : (2, 1)Point : (0, 0)

HINT

注意精度控制,C语言的输入输出被禁用。

Append Code

append.cc, 


append cc中的内容为~
int main(){    char c;    double a, b;    Point q;    while(std::cin>>a>>c>>b)    {        Point p(a, b);        p.show();    }    q.show();}
这是一道非常水的类与封装的题目,只要掌握了类的最基本的内容就可以做出来,没有算法和技巧可言~~~
代码如下
#include <iostream>#include <iomanip>using namespace std;class Point{public:    Point()    {        x = 0;        y = 0;    }    Point(double a,double b)    {        x = a;        y = b;    }    void show()    {         cout<<setprecision(16)<<"Point : ("<<x<<", "<<y<<")"<<endl;    }private:    double x, y;};int main(){    char c;    double a, b;    Point q;    while(std::cin>>a>>c>>b)    {        Point p(a, b);        p.show();    }    q.show();}

相信你也可以很快做出来哦~~

0 0
原创粉丝点击