博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第十二周项目4-点、圆的关系
阅读量:6160 次
发布时间:2019-06-21

本文共 1045 字,大约阅读时间需要 3 分钟。

(1)先建立一个Point(点)类,包含数据成员x,y(坐标点);
(2)以Point为基类,派生出一个Circle(圆)类,增加数据成员(半径),基类的成员表示圆心;
(3)编写上述两类中的构造、析构函数及必要运算符重载函数(本项目主要是输入输出);

(4)定义友元函数int locate,判断点p与圆的位置关系(返回值<0圆内,==0圆上,>0 圆外);

#include 
#include
using namespace std;class Point{public: Point():x(0),y(0){} Point(double a,double b):x(a),y(b){} double distance(const Point &p)const; friend ostream & operator<<(ostream &,const Point &);protected: double x; double y;};double Point::distance(const Point &p) const{ double dx = x-p.x; double dy = y-p.y; return sqrt(dx*dx+dy*dy);}ostream & operator<<(ostream &output,const Point &p){ output<<"["<
<<","<
<<"]"<
0 圆外protected: double radius;};ostream &operator<<(ostream &output,const Circle &c){ output<<"Center=["<
<<", "<
<<"], r="<
<
0)?"外":((locate(p1, c1)<0)?"内":"上"))<
0)?"外":((locate(p2, c1)<0)?"内":"上"))<
0)?"外":((locate(p3, c1)<0)?"内":"上"))<
运行结果:

转载于:https://www.cnblogs.com/mayuko/p/4567479.html

你可能感兴趣的文章
跨站脚本功攻击,xss,一个简单的例子让你知道什么是xss攻击
查看>>
js时间和时间戳之间如何转换(汇总)
查看>>
js插件---图片懒加载echo.js结合 Amaze UI ScrollSpy 使用
查看>>
java中string和int的相互转换
查看>>
P1666 前缀单词
查看>>
HTML.2文本
查看>>
Ubuntu unity安装Indicator-Multiload
查看>>
解决Eclipse中新建jsp文件ISO8859-1 编码问题
查看>>
7.对象创建型模式-总结
查看>>
【论文阅读】Classification of breast cancer histology images using transfer learning
查看>>
移动端处理图片懒加载
查看>>
jQuery.on() 函数详解
查看>>
谈缓存和Redis
查看>>
【转】百度地图api,根据多点注标坐标范围计算地图缩放级别zoom自适应地图
查看>>
用户调研(补)
查看>>
ExtJS之开篇:我来了
查看>>
☆1018
查看>>
oracle 去掉空格
查看>>
6.13心得
查看>>
Runtime类
查看>>