确定标段项目布置、结构形态与控制尺寸等工作属于( )。
A.初步设计阶段 B.施工图设计阶段C.招标设计阶段 D.技术设计阶段
参考答案:C
找近义、反义词。
①找近义词:含糊一 僻静一 沉思一
②找反义词:慈祥一 幼稚一 热腾腾一
下列程序的输出结果是( )。 #include<iostream> using namespace std; class TestClass static int i; public: TestClass()i++; ~TestClass()i--; static int getVal()return i; ; int TestClass::i=O; void fun()TestClass ob2;cout<<ob2.getVal(); int main() TestClass ob1; fun(); TestClass*ob3=new TestClass;cout<<ob3->getVal(); delete ob3;cout<<TestClass::getVal(); return 0;
A.111
B.121
C.211
D.221