题目内容

女性,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

有以下程序输出结果是()。#includestruct stu{ int num; char name[10]; int age; };void fun(struct stu *p){ printf("%s\n",(*p).name); }int main(){ struct stu students[3]={{9801,"zhang",20},{9802,"Wang",19},{9803,"zhao",18}}; fun(students+2); }

A. zhang
B. zhao
C. wang
D. 18

若已有类型定义:struct date { int year; int month; int day;};写出下面程序的运行结果____ 。#includevoid change(struct date d){d.year=2008;d.month=d.day=8;}int main____{struct date date1={0,0,0};change(date1);printf("%d,%d,%dn",date1.year,date1.month,date1.day);return 0;}

答案查题题库