国家对可用作原料固体废物的国外供货商实行( )。
A.供货许可制度
B.备案登记制度
C.注册登记制度
D.资质核准制度
参考答案:C
新生儿颅内出血的治疗原则错误的是().
A.降低颅内压
B.指导患儿下床活动
C.保持安静,避免刺激
D.止血
E.控制惊厥
下列给定程序中,函数fun的功能是:计算正整数num各位上的数字之积。 注意:不要改动maln函数,不得增行或删行,也不得更改程序的结构! 试题程序: #include <stdio.h > #include <conio.h> long fun (long num) /********** found********** / long k; do k*=num% 10; /********** found********** / num\=10; while (num); return (k); main () long n; printf ("\ n please enter a num- ber: "); scanf("% 1d", &n); printf("\n% 1d\n", fun(n));