题目内容

属于胃十二指肠溃疡手术后早期并发症的是( )

A. 术后胃出血
B. 溃疡复发
C. 早期倾倒综合征
D. 残胃癌
E. 碱性反流性胃炎

查看答案
更多问题

关于倾倒综合征患者的饮食指导,以下不正确的是( )

A. 少食多餐
B. 餐后散步
C. 高蛋白饮食
D. 餐时限制饮水
E. 避免过甜、过咸食物

女性,47岁,十二指肠溃疡急性穿孔。行毕Ⅱ式胃大部切除术回病房后,护士查房时见胃管内连续3小时,吸出鲜红色胃液约300ml。正确的处理是( )

A. 继续观察,不需特殊处理
B. 加快静脉输液速度
C. 应用止血药
D. 胃管内灌注冰盐水
E. 马上做好手术止血的准备

设链表上的结点的数据结构定义如下:struct node{int x;struct node *next;};函数create的功能是:创建一个有序的链表(结点中x的值按升序排列),链表中结点的个数为参数n的值,函数返回该有序链表的头指针。算法思想如下:每产生一个新结点,插入到链表中的恰当位置,使得插入新结点后的链表仍然保持有序。creat(int n){ struct node *p, *p1, *p2, *h=NULL;inti=0;if(n<1)return NULL;while( ){ p=(struct node * )malloc(sizeof(struct node));scanf(“%d”,&p->x);p->next=NULL;if(h= =NULL) ;else{ p1=p2=h;while(p2&&p->x>=p2->x){p1=p2;p2=p2->next;}if( p2= =h){ p->next=h;h=p;}else{p->next=p2;p1->next=p;}}i++;}return h;}

1.有以下程序#include#includestruct node{int num;struct node *next;};int main(){ struct node *p,*q,*r;p=(struct node *)malloc(sizeof(struct node));q=(struct node *)malloc(sizeof(struct node));r=(struct node *)malloc(sizeof(struct node));p->num=10; q->num=20; r->num=30; p->next=q;q->next=r;printf("%d\n",p->num+p->next->num);return 0;}程序运行后的输出结果是( )。

A. 10
B. 20
C. 30
D. 40

答案查题题库