2A
4A
8A
16A
32A
第1题:
( 13 )补充完整下面的类定义:
const double PI=3 .14;
class Circle{ // 圆形物体的抽象基类
protected:
double r; // 半径
public:
Circle ( double radius=0 ) : r ( radius ) {}
【 13 】 ; // 计算圆形物体表面积的纯虚函数声明
};
class Cylinder:public Circle { // 圆柱体类
double h; // 高度
public:
Cylindr ( double radius=0, doubli height=0 ) :
Circle ( radius ) , h ( height ) {}
Virtual double Area () { // 计算圆柱体的表面积
return 2*PI*r* ( r+h ) ;
}
};
第2题:
Software maintenance is to do necessary modification, supplenemt, and completeness during software life circle. Among the following vary kinds of maintenance, which one has the maximum workload in a general way?(73).
A.relevance maintenance
B.completeness maintenance
C.correctness naintenance
D.other kinds of maintenance
第3题:
第4题:
师长教师说:Draw a circle.学生画一个circle,这就属于课程标准里面谈到的用说话来做工作。
第5题:
对
错
第6题:
Inefficient scavenging;twice
Inefficient scavenging;1~8 times
Fewer strokes in a circle;twice
Fewer strokes in a circle;1~8 times
第7题:
distance
largeness
diameter
measurerment
第8题:
Line、Circle、Pset和Line、Shape控件
Line、Circle、Pset
Line、Circle、Poine方法
Line、Shape控件
第9题:
y=3x+2
y=2x+1
y=-x+5
y=-2
y=-6
第10题:
4π
8π
12π
16π
64π
第11题:
the deck line
Plimsoll disc
Plimsoll line
summer load line
第12题:
Greenwich celestial meridian
hour circle of the body
local celestial meridian
vertical circle of the body
第13题:
使用VC6打开考生文什夹下的工程test1_3。此工程包含一个test1_3.cpp,其中定义了类circle和column,其中column类由circle类protected派生,但两个类的定义并不完整。请按要求完成下列操作,将程序补充完整。
(1)定义类circle的保护数据成员r和area,它们都是double型的数据。请在注释“//**1**”之后添加适当的语句。
(2)添加类circle的无参数的构造函数,使circle对象的r默认值为0,请在汁释“//**2**”之后添加适当的语句。
(3)添加派生类column构造函数的定义,传入的参数为double型的height和radius,并将具分别赋值给数擗成员h和基类的r,请在注释“//**3**”之后添加适当的语句。
(4)完成派生类column的成员函数print的定义,使其以格式“r=_area=_”先输出半径r和底面积area,再以格式“h=_vol=_”输出高h和体积vol的值,请在注释“//**4**”之后添加适当的语句。
输山结果如下:
r=1 area=3.1416
h=2 vo1=6.2832
注意:除在指定的位置添加语句外,请不要改动程序中的其他语句。
源程序文件test1_3.cpp清单如下:
include<iostream.h>
const double pi=3.1416;
class circle
{
protected:
//**1**
public:
//**2**
circle(double radius){ r=radius;}
void print()
{
area=r*r*pi;
cout<<"r="<<r<<" "<<"area="<<ared<<endl;
}
};
class column: protected circle
{
protected:
double h;
public:
//** 3 **
void print()
{
// ** 4 **
}
};
void main()
{
column col(1.0,2.0);
Col.print();
}
第14题:
若有以下程序: #include <iostream> using namespace std; #define PI 3.14 class Point { private: int x,y; public: Point(int a,int B) { x=a; y=b; } int getx() { return x; } int gety() { reurn y; } }; class Circle: public Point { private: int r; public: Circle(int a,int b.int C) :Point(a,B) r=c; int getr() { return r; } double area() { return PI*r*r; } }; int main() { Circle cl(5,7,10); cout<<c 1 .area()<<end1; return 0; } 程序执行后的输出结果是
A.314
B.157
C.78.5
D.153.86
第15题:
第16题:
下列属于Visual Basic工程文件的是()。
第17题:
6π-2πx
6π-πx2
12π-2πx
36π-2πx
36π-πx2
第18题:
A curved line drawn on a Mercator Chart
A course line that inscribes a loxodromic curve
The shortest distance between any two points on the earth
The smallest circle that can be drawn on the face of a sphere
第19题:
gained at right angles to the original course
gained in the direction of the original course
moved sidewise from the original course when the rudder is first put over
around the circumference of the turning circle
第20题:
第21题:
2A
4A
8A
16A
32A
第22题:
3/2
2/3
4/9
1/4
9/4
第23题:
Ⅰ only
Ⅱ only
Ⅲ only
Ⅰ, Ⅱ and Ⅲ
Ⅱ and Ⅲ only
第24题:
16%
20%
40%
80%
96%