某市政府准备出让一宗位于某区的商业用地,其出让方式一般宜采用( )。
A.协议
B.议标
C.招标、拍卖
D.划拨
参考答案:C
咨询员在其表哥心理困扰严重的时候,自告奋勇、拔刀相助,并与其建立起咨询关系。咨询员与其表哥的咨询关系( )。
A.因为彼此了解,咨询更容易进行
B.没有尊重表哥
C.是出于对表哥的同情
D.犯了双重关系的职业错误
使用VC6打开考生文件夹下的工程RevProj14。此工程包含一个源程序文件RevMain14.cpp,但该程序中类的定义有错误。请改正程序中的错误,使它能得到正确结果。 注意,不要改动main函数,不得删行或增行,也不得更改程序的结构。 源程序文件RevMain14.cpp中的程序清单如下: //RevMain14.cpp #include<iostream> #include<math> using namespace std; class Point private: double x; double y; public: Point()void Point(double x1,double y1) x=x1; y=y1;void setvalue(double x,double y) x=x; y=y;double getx () return x;double gety() return y;void print() cout<<"x="<<x<<",y= "<<y<<end1;~Point() ; class Line private:Point p1;Point p2;double width; public:Line(double x1,double y1,double x2,double y2,double d) :p1(x1,y1),p2(x2,y2) width=d;~Line()void displength() double 1; 1=sqrt((p1.getx)-p2.getx())*(p1.getx()-p2-getx())+(p1.gety()-p2.gety())*(p1.gety()-p2.gety())); cout<<"the length of Line is "<<1<<end1; ; int main() Line *p1; Line 1(5,15,25,35,0.5); p1=&1; p1->displength(); return 0;