关于稀释法药敏试验中使用的母液叙述正确的是()
A.用滤纸过滤除菌
B.用多孔玻璃滤器除菌
C.少量室温保存
D.用滤膜过滤除菌
E.-100℃长期保存
参考答案:D
对脊椎型颈椎病最有意义的检查是()
A.正侧位X线片了解椎间隙是否变窄
B.侧位X线片了解椎间孔有无缩小
C.侧位过伸过屈位X线片
D.脊髓碘油造影
E.颈椎MRE
下列给定程序中函数fun的功能是:将tt所指字符串中的小写字母全部改为对应的大写字母,其他字符不变。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构! 试题程序: #include <conio.h> #include <stdio.h > #include <string.h> char* fun (char tt[]) int i; for (i=0; tt[i]; i++) /********** found********** / if ((tt[i]>=’a’) ||(tt[i]<=’z’)) /********** found********** / tt[i]+=32; return (tt); main () char tt[81]; printf ("\nPlease enter a string: "); gets (tt); printf ("\nThe result string is: \n% s", fun(tt));