问题 问答题

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

实现的,三角形面积的计算是按公式

实现的,其中

。请在程序中的横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:

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 pl, 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-lengthl())*(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.length1()<<endl;

cout<<"Side 2:"<<r.length2()<<endl;

cout<<"Side 3:"<<r.length3()<<endl;

cout<<"area:"<<r.area()<<endl;

return 0;

答案

参考答案:

(A)const Point&p

(B)pA(pA),pB(pB)

(C)Point pA,Point pB,Point pC

(D)(lengthA()+lengthB()+lengthC())/B

解析:

主要考查的是坐标点类Point类、线段类Line类和三角形类Triangle类,其中涉及构造函数和const函数。构造函数的成员列表初始化是最常考查的知识点,定义函数的参数时要注意观察函数体及函数的注释,理解该函数的功能。

(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,Point p2,Point p3。

(4)主要考查考生对成员函数的掌握,根据函数注释,可知本函数要求计算三角形面积,再看题目的提示:s=(a+b+c)/2。可知空格处要填的是三角形的三条边之和除以2,而求边长的函数已经给出,这里直接调用即可。

单项选择题
单项选择题