向电台飞行,航向为178°,航线角是175°,测出的ADF相对方位是0°,说明飞机偏离航线的情况是().
A.不偏
B.偏右3°
C.偏左3°
参考答案:C
经长期临床应用证明安全、有效,对细菌耐药性影响较小,价格相对较低的抗菌药物是()。
A.非限制使用级
B.非自主使用级
C.限制使用级
D.特殊使用级
M名学生的成绩已在主函数中放入一个带头结点的链表结构中,h指向链表的头结点。请编写函数proc(),它的功能是:找出学生的最高分,由函数值返回。 注意:部分源程序已给出。 请勿改动主函数main和其他函数中的任何内容。 试题程序: #include<stdio.h> #include<stdlib.h> #define M 8 struet slist double s; struct slist * next; ; typedef struct slist STREC; double proc(STREC * h) STREC*treat(double*s) STREC *h, *p, *q; int i=0; h=p=(STREC*)malloc(sizeof(STREC)); p->s=0; while(i<M) /产生8个结点的链表,各分数存入链表中 q=(STREC*)malloc(sizeof(STREC)); p->s=se[i]; i++; p->next=q; p=q; p->next=NULL; return h; //返回链表的首地址 void outlist(STREC*h) STREC *p; p=h; printf("head"); do printf("->%2.Of", p->s); p=p->next; //输出各分数 while(p->next! =NULL); printf("n\n"); void main() double stu[M]=60, 70, 80, 90, 65, 75, 85, 95, max; STREC *h; h=creat(stu); outlist(h); max=proc(h); printf("max=%6.1f\n", max);