股份公司要求对高度风险及以上隧道在初期支护未封闭成环段,除开挖工序外,对其作业人员的数量有何规定?
参考答案:总数不得超过9人。
项目竣工报告是由( )编制的项目实施总结,主要从工程质量、进度和造价方面总结项目的建设工作。
A.项目经理B.验收小组C.监理单位D.项目业主
请使用VC6或使用[答题]菜单打开考生文件夹proj1下的工程projl。程序中位于每个“//ERROR ****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name:Smith Age:21 ID:99999 CourseNum: 12 Record:970 注意:只修改每个“//ERROR ****found****”下的那一行,不要改动程序中的其他内容。 #include <iostream> using namespace std; class Studentlnfo protected: //ERROR **********found********** char Name; int Age; int ID; int CourseNum; float Record; public: Studentlnfo(char*name,int Age,int ID,int courseNum,float record); //ERROR **********found********** void ~Studentlnfo() float AverageRecord() return Record/CourseNum; void show()const cout<<"Name:"<<Name<<"Age:<<"CourseNum:"<<CourseNum<<"Record:"<<Record<<endl; ; //ERROR **********found********** Studentlnfo Studentlnfo (char*Name,int Age,int ID,int CourseNum,float Record) Name=name;
Age=age;this->ID=ID;CourseNum=courseNum;Record=record;int main()Studentlnfo st("Smith",21,99999,12,970);st.show();return 0;