周转材料费用测算时管理费和保养费均按周转材料原值的一定比例计取,一般不超过原值的4%。
参考答案:错
获准免验证书的进出出商品的申请人,凭()等文件到检验检疫机构办理放行手续。
A.通关单
B.外贸合同
C.商品的品质证明
D.有效免验证书
[说明] 下面的程序是通过双链结构来查找学生的信息程序的一部分,即创建双向链表部分。 [函数] #include <stdio.h> #define N 10 typedef struct node char name [20]; struct node *llink,*rlink; stud; /*双链表的结构定义*/ /*双链表的创建*/ stud * creat (int n) stud *p,*h,*s; int i; if ((h= (stud *) malloc (sizeof (stud))) ==NULL) printf ("cannot find space! \n") ; exit (0) ; h->name[0]=’\0’; h->llink=NULL; h->rlink=NULL; p=h; for(i=0; i<n; i++) if((s= (stud *) malloc (sizeof (stud)))==NULL) printf ("cannot find space! \n") ; exit (0) ; (1) ; printf("Please input the %d man’s name: ";i+1) ; scanf("%s", s->name) ; (2) ; (3) ;p=s ; (4) ; (5) ;return (h) ;