寄生人体肠道的线虫中体型最大者为()
A.似蚓蛔线虫
B.毛首鞭形线虫
C.钩虫
D.丝虫
E.猪巨吻棘头虫
参考答案:A
在物流冰山说中,费用占总物流费用较少的部分指()。
A.露出水面的部分
B.沉于水面下的部分
C.企业内部消耗的物流费用
D.制造成本
下面程序的运行结果是:【 】 int f( int a[ ], int n) { if(n>1) return a[0]+f(&a[1],n-1); else return a[0];} main ( ) { int aa[3]={1,2,3},s; s=f(&aa[0],3); ; printf(“%d\n”,s);}