换热器折流板的作用是()。
A.增加湍流程度
B.增大传热系数
C.提高传热系数
D.支撑管束
参考答案:A, B, C, D
在临床各类器官移植中疗效最显著的是()。
A.心脏移植
B.肝移植
C.肾移植
D.脾移植
E.肺脾移植
阅读下列程序,写出程序的运行结果 [8] 。 #include<iostream. h> void main() char str1[ ]: "Hello, World;char str2[100];int i=0;do if (str1[i]>= ’a’&& str1[i]<= ’z’ ) str2[i]=str1[i]-32; else str2[i]=strl [i]; i++; while(strl[i]!=’\0’); str2[i]=’\0’; cout<<str1<<end1; cout<<str2<<end1;