治疗休克的首要措施是()。
A.补充血容量
B.去除引起休克的病因
C.应用血管收缩剂进行升压
D.应用皮质类固醇激素
E.纠正酸中毒
参考答案:A
胃、十二指肠溃疡引起大出血的原因是
A.胃窦部黏膜炎性糜烂渗血
B.溃疡侵及胰腺引起大出血
C.溃疡基底的动脉被侵蚀破裂
D.胃、十二指肠襞微血管不断渗血
E.胃酸作用使渗血不易凝固
分析以下程序的执行结果 [12] 。 #include <iostream. h> class S{ int A[10]; public:int &operator () (int); }; int &S: :operator() (int x) {return A[x]; } void main() {S a;int i,j;for (i=0; i<10; i++)a(i)=i*2;for (i=0; i<10; i++)cout<<a(i)<<" ";cout<<end1; }