POINT.CPP
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //习题12.1中的point.cpp文件
  2. //POINT.CPP
  3. Point::Point(float a,float b)
  4. {x=a;y=b;}
  5. void Point::setPoint(float a,float b)
  6. {x=a;y=b;}
  7. ostream & operator<<(ostream &output,const Point &p)
  8. {output<<"["<<p.x<<","<<p.y<<"]"<<endl;
  9.  return output;
  10. }