建设工程项目中防止污染的设施,必须与主体工程()。
A.同时设计
B.同时申报
C.同时验收
D.同时施工
E.同时投产使用
参考答案:A, D, E
腹腔镜手术中,出现气体栓塞并发症后应采取的措施是()。
A.立即解除气腹
B.吸入纯氧
C.左侧卧位
D.通过中央静脉插管抽出右心房、肺动脉内的气体
E.以上均是
以下程序中函数f( )的功能是将n个字符串按由大到小的顺序进行排序。 #include<string.h> void f(char p[ ][10],int n) { char t[20]; int i,j; for(i =O;i <n-1 ;i ++ ) for(j =i + 1 ;j < n;j ++ ) if(strcmp(p [i] ,p[j] ) <0) { strcpy(t,p[i]);strcpy(p[i] ,p[j] );strcpy(p[j] ,t); } } main ( ) { char p [ ] [ 10 ] = { "abc","aabdfg","abbd","dcdbe", "cd" }; int i; f(p,5); printf("%d\n",strlen(p[O] ) ); } 程序运行后的输出结果是( )。
A.6
B.4
C.3
D.5