过敏性接触性口炎属于()
A.Ⅰ型变态反应
B.Ⅱ型变态反应
C.Ⅲ型变态反应
D.Ⅳ型变态反应
E.Ⅴ型变态反应
参考答案:D
在Rt△ABC中,∠C=90°,a:b=5:12,c=39,则a+b=( )。
函数min()的功能是:在带头结点的单链表中查找数据域中值最小的结点。请填空。 #include <stdio.h> struct nodeint data; struct node *next; ; int min(struct node *first)/*指针first为链表头指针*/ struct node *p; int m; p=first->next; m=p->data; p=p->next; for(;p!=NULL; p=______) if(p->data<m) m=p->data; return m;