对城乡居民生活饮水的卫生监督属()
A.经常性卫生监督
B.预防性卫生监督
C.环境调查
D.环境监测
E.环境监督
参考答案:B
—I’m very tired these days because of studying for physics.
—Why not ______ music. It can make you _______.
A.listen to; relaxing
B.listen to; to relax
C.listening to; relax
D.listen to; relaxed
如下程序声明了一个二维图形类TwoDShape,从其派生出矩形类Rec。 #include<iostream> #include<string> using namespace std; class TwoDShape //二维图形类 char name[20]; public: TwoDSha TwoDShape pe(char*n="unknown")strepy(name,n); char*getName( )return name; ______=0; ; class Rec:public TwoDShape double width,height; public: Rec(double w=0.0,doubleh=0.0):TwoDShape("rectangle")width=w;height=h; double getWidth( )return width; double getHeight( )return height; double area( )return width*height; ; int main( ) TwoDShape*shape; shape=new Rec(2.1,3.0); cout<<"object is"<<shape->getName( )<<"\n"; cout<<"Area is"<<shape->area( )<<"\n"; return 0; 请将程序补充完整,使程序在运行时输出: object is triangle Area is 6.3