问题 单项选择题 案例分析题

老年男性,65岁,既往有胆囊结石病史,因上腹痛4小时由家属送诊,查体:意识淡漠,血压90/50mmHg,右上腹部肌紧张。

如行急诊手术治疗,进入腹腔后应首先()。

A.找到穿孔位置,进行修补

B.清除腹腔内渗出物

C.切除胆囊

D.切开胆总管

E.探查胰腺是否坏死

F.冲洗腹腔

答案

参考答案:D

问答题

【程序6说明】 本程序实现两个多项式的乘积运算。多项式的每一项由类Item描述,而多项式由类List描述。类List的成员函数有: createList():创建按指数降序链接的多项式链表,以表示多项式。 reverseList():将多项式链表的表元链接顺序颠倒。 multiplyList(List L1,List L2):计算多项式L1和多项式L2的乘积多项式。 【程序6】 #include<iostream.h> class List; class |tem{ friend class List; private: double quot; int exp; |tem * next; public:|tem(double_quot,int_exp){ (1) ;} }; class List { private: |tem * list; public: List(){list=NULL;} void reverseList(); void multiplyList(List L1,List L2); void createList(); }; void List::createList() { |tem * p,* u,*pre; int exp; doubte quot; list=NULL; while(1){ cout<<"输入多项式中的一项(系数、指数):"<<endl; cin>>quot>>exp: if(exp<0)break; //指数小于零,结束输入 if(quot==0)continue; p=list; while( (2) ){ //查找插入点 pre=p;p=p->next;} if(p!=NULL&&exp==p->exp) {p->quot+=quot;continue;} u= (3) ; if(p==list) list=u; else pre->next=u; u->next=p;} } void List::reverseList() { |tem*p,*u; if(list==NULL)return; p=list->next;list->next=NULL;while(p!=NULL)}u=p->next;p->next=list;list=p;p=u;} } void List::multiplyList(List L1,List L2) {|tem*pLI,*pL2,*u; int k,maxExp; double quot; maxExp= (4) ; L2.reverseList();list=NULL; for(k=maxExp;k>=0;k--){ pL1=L1.list; while(pL1!=NULL&&pL1->exp>k)pL1=pL1->next; pL2=L2.list; while(pL2!=NULL&& (5) pL2=pL2->next; quot=0.0; while(pL1!=NULL&&pL2!=NULL){ if(pL1->exp+pL2->exp==k){ (6) ;pL1=pL1->next;pL2=pL2->next; }else if(pL1->exp+pL2->exp>k) pL1=pL1->next; else pL2=pL2->next; } if(quot!=0.0){ u=new |tem(quot,k); u->next=list;list=u;} } reverseList(:);L2.reverseList(): } void main() { ListL1,L2,L; cout<<"创建第一个多项式链表\n";L1.createList(); cout<<"创建第二个多项式链表\n";L2.createList(); L.multiplyList(L1,L2); }

翻译题

完成句子

1. He________his promise that he would take good care of his neighbour's pet cat.(turn)

    他违背了他会好好照顾邻居的宠物猫的诺言.

2. We'd better stop complaining and set about realizing what we are dreaming of ________the best

     chance.(case)

     我们最好停止抱怨并开始实现我们的梦想,  以免错过最好的机会.

3. Men,  according to the study,  ________suffer from a heart disease than women if they are addicted

     to smoking.(likey)

    据报道,  如果沉溺于吸烟,  男性比女性更有可能患心脏方面的疾病.

4. The foreigner can't speak Chinese,  ________what these actors are singing.(nor)

    这个外国人不会说中文,  他也听不懂那些演员在唱什么.

5. It is the glorious duty for every soldier________.(defend)

    对每一个战士来说卫国抗敌是一个光荣的使命.

6. You should concentrate on what your teacher said in class and________again.(avoid)

    你应该专心于老师在课堂上所讲的,  避免再次犯同样的错误.

7. ________from the supermarket,  she was arrested and would be sentenced two months in prison.

    (catch)

     因为被抓住从超市偷东西,  她被逮捕,  并且将会判处两个月的囚禁.

8. ________for many years,  I received a message from her recently,  which surprised me a lot.(touch)

    多年未和她保持联系,  最近我却收到一条来自她的短信,  这使得我非常惊讶.

9. After the middleterm examination,  my teacher wrote me a letter,  ________than ever before.(inspire)

    期中考试过后,  我的老师给我写了一封信,  鼓励我比以前更加努力学习.

10. In Beijing Olympic games,  the Chinese team got 51 gold medals,  ________of all the competing

      countries.(rank)

    在北京奥运会上,  中国代表队获得了51枚金牌,  在所有的参赛国家中排名第一.