根据对人体的致病性,能引起人类食物中毒的细菌属于()。
A.条件致病菌
B.酵母菌
C.非致病菌
D.致病菌
E.腐败菌
参考答案:A
氯丙嗪在正常人引起的作用是()
A.烦躁不安
B.情绪高涨
C.紧张失眠
D.感情淡漠
E.以上都不是
有如下程序: #include<iostream> using namespace std; class Amount{ int amount; public: Amount(int n=0):amount(n){ } int getAmount( )const{return amount;} Amount&operator+=(Amount A) { amount+=a.amount; return; } }; int main( ){ Amount x(3),y(7); x+=y: cout<<x.getAmount( )<<endl; return 0; } 已知程序的运行结果是10,则下画线处缺失的表达式是
A.*this
B.this
C.&amount
D.amount