下列哪一种生物活性介质不能引起支气管平滑肌痉挛().
A.组胺
B.前列腺素F
C.前列腺素E
D.神经肽
E.P物质
参考答案:C
电视机遥控器上标有“VOL”字样的是调节什么的按键?()
A.菜单
B.节目
C.音量
D.回看
若下列程序运行时输出结果为 1,A,10.1 2,B,3.5 请将程序补充完整。 #include<iostream> using namespace std; int main() { void test(mt,char,double______); test(1,’A’,10.1); test(2,’B’); return 0; } void test(int a,char b,double c) { cout<<a<<’,’<<b<<’,’<<c<<endl; }