2008年奥运会在北京召开,奥运会中有马拉松长跑的运动项目,这一运动项目起源于[ ]
A.希腊内战
B.希波战争
C.斯巴达克起义
D.亚历山大东征
答案:B
防虫的关键温度是
A.4℃
B.15℃
C.35℃
D.25℃
E.50℃
下列程序的执行结果为________。 #include<iostream.h> class Point { public: Point(double i,double j){x=i;y=j;} double Area( )const{return 0.0;} private: double x,y; }; class Rectangle:public Point { public: Rectangle(double i,double J,double k,double 1); double Area( )const(return w*h;} private: double w,h; }; Rectangle::Rectangle(double i,double j,double k,double 1):Point(i,j) { w=k;h=l; } void fun(Point&s) { cout<<s.Area( )<<endl; } void main( ) { Rectangle rec(3.0,5.2,15.0,25.0); fun(rec); }