楔状软骨位于()
A.舌会厌襞黏膜下
B.杓会厌襞黏膜下
C.杓状软骨顶部
D.环状软骨板上外缘
E.以上都不是
参考答案:B
计算机辅助设计的简称是______。
A.CAT
B.CAM
C.CAI
D.CAD
有以下程序: # include <iostream> int i=0; void fun() {{static iht i=1; std::cout<<i++<<','; } std:: cout<<i<<','; } int main() { fun(); fun(); return 0; }程序执行后的输出结果是______。
A.1,2,1,2,
B.1,2,2,3,
C.2,0,3,0,
D.1,0,2,0,