1、计算机二级(C+)上机考试 3及答案解析(总分:-3.00,做题时间:90 分钟)1.改错题 使用 VC6打开考生文件夹下的工程 test19_1,此工程包含一个源程序文件 test19_1.cpp,但该程序运行有问题,请改正程序中的错误,使程序的输出结果如下: 1: weight:5 age:0 2: weight:7 age:9源程序文件 test19_1.cpp清单如下: #include class animal public: /* found */ friend void setvalue(animal /* found */ viod print(); protected: in
2、t itsweight; int itsage; ; void animal:print() cout a b; CPosition psA(a, b); cout a b; cout y) t=x; x=y; y=t; coutz) t=x; x=z; z=t; if(yz) t=y; y=z; z=t; cout a b; CPosition psA(a, b); cout a b; cout “The distance is “ psA.distance(a,b) _正确答案:((1) CPosition:CPosition() (2) void move(double ax, double ay)x += ax;y += ay; (3) return sqrt(pow(x-bx, 2) + pow(y-by, 2); )解析:本题主要考查考生对于类的定义和重载构造函数的掌握情况。在(3)中使用了基本的数学函数sqrt(x)求 x的开方,pow(x,n)函数是求 x的 n次方。