/*
* Copyright (c) 2013, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作者:杨晨
* 完成日期:2013 年 5 月1 4日
* 版本号:v1.0
*
* 输入描述:无
* 问题描述:
* 程序输出:
* 问题分析:
* 算法设计:略
*/
#include<iostream>
#include<Cmath>
using namespace std;
class Point //定义坐标点类
{
public:
//定义必要的构造函数
Point():x(0),y(0){};
Point(double x0,double y0):x(x0),y(y0){};
void PrintPoint(); //输出点的信息
double getX()
{
return x;
}
double getY()
{
return y;
}
private:
double x,y; //点的横坐标和纵坐标
};
class Line: public Point //利用坐标点类定义直线类, 其基类的数据成员表示直线的中点
{
public:
Line(Point pt1, Point pt2):pt1(pt1),pt2(pt2){} //构造函数,用初始化直线的两个端点及由基类数据成员描述的中点
double Length(); //输出直线的长度
void PrintLine(); //输出直线的两个端点和直线长度
private:
class Point pt1, pt2; //直线的两个端点
};
void Point::PrintPoint()
{
cout<<"("<<x<<","<<y<<")"<<endl;
}
double Line::Length()
{
return sqrt((pt1.getX()-pt2.getX())*(pt1.getX()-pt2.getX())+(pt1.getY()-pt2.getY())*(pt1.getY()-pt2.getY()));
}
void Line::PrintLine()
{
double dx=(pt1.getX()+pt2.getX())/2;
double dy=(pt1.getY()+pt2.getY())/2;
cout<<"("<<dx<<","<<dy<<")"<<endl;
}
int main()
{
Point ps(-2,5),pe(7,9);
Line l(ps,pe);
//下面输出直线l的端点、长度和、中点的信息
cout<<"\n The length of Line:";
cout<<l.Length()<<endl;//输出直线l的信息(请补全代码)
cout<<"\n The middle point of Line: ";
l.PrintLine();//输出直线l中点的信息(请补全代码)
return 0;
}
输出结果: