请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.cpp,其中有坐标点类point、线段类Line和三角形类Triangle的定义,还有main函数的定义。程序中两点间距离的计算是按公式d=实现的,

admin2018-06-19  27

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.cpp,其中有坐标点类point、线段类Line和三角形类Triangle的定义,还有main函数的定义。程序中两点间距离的计算是按公式d=实现的,三角形面积的计算是按公式f=现的,其中s=。请在程序中的横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:
    Side 1:9.43398
    Side 2:5
    Side 3:8
    area:20
    注意:只在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
    #include<iostream>
    #include<cmath>
    using namespace std;
    class Point{//坐标点类
    public:
    const double x,y;
    Point(double x=0.0,double y=0.0):x(x),y(y) { }
    //**********found**********
  double distanceTo(____________)
  const {
  //到指定点的距离
    return sqrt((x-p.x)*(x-p.x)+(y-p.y)*(y-p.y));
    }
    };
    class Line{//线段类
    public:
    const Point p1,p2;//线段的两个端点
    //**********found**********
    Line(Point p1,Point p2):____________{ }
    double length()const{return p1.distanceTo(p2);}//线段的长度
    };
    class Triangle{//:角形类
    public:
    const Point p1,p2,p3;//三角形的三个顶点
    //**********found**********
    Triangle(___________):p1(p1),p2(p2),p3(p3){ }
    double length1( )const{//边p1,p2的长度
    return Line(p1,p2).length();
    }
    double length2( )const{//边p2,p3的长度
    return Line(p2,p3).length();
    }
    double length3( )const{//边p3,p1的长度
    return Line(p3,p1).length();
    }
    double area()const{//三角形面积
    //**********found**********
    double s=___________;
    return sqrt(s*(s-length1())*(s-length2())*(s-length3()));
    }
    };
    int main(){
    Triangle r(Point(0,0,8.0),Point(5.0,0.0),Point(0.0,0.0));
    cout<<"Side 1:"<<r.lengthl()<<end1;
    cout<<"Side 2:"<<r.length2()<<end1;
    cout<<"Side 3:"<<r.length3()<<end1;
    cout<<"area:"<<r.area()<<end1;
    return 0;
    }

选项

答案(1)const Point & p (2)pl(p1),p2(p2) (3)Point p1,Point p2,Point p3 (4)(length1( )+length2( )+length3( ))/2

解析 (1)主要考查考生对函数形参的掌握,由函数的注释可知有本坐标点到达某个坐标点类的距离,再根据函数1本return sqrt((x-p.x)*(x-p.x)+(y-p.y)*(y-p.y));可知,该坐标点类名为p,因此可以知道形参为Point& p,为了不改变该坐标点的值,前面要加上const。
    (2)主要考查考生对构造函数的掌握,对于常变量型私有成员const Point p1,p2,只能用成员初始化列表进行赋值。
    (3)主要考查考生对构造函数的掌握,由空格后面的语句:p1(p1),p2(p2),p3(p3){ }可知,该构造函数需要进行成员列表初始化,再看类的私有成员const Point p1,p2,p3,可知p1,p2,p3是Point类型,因此形参为Point p1,P0int p2,Point p3。
    (4)主要考查考生对成员函数的掌握,根据函数注释,可知本函数要求计算三角形面积,再看题目的提示:s=(a+b+c)/2。可知空格处要填的是三角形的三条边之和除以2,而求边长的函数已经给出,这里直接调用即可。
转载请注明原文地址:https://kaotiyun.com/show/jNAp777K
0

最新回复(0)