在医院药事管理委员会中担任主任委员的一般是
A.药剂科主任
B.院长
C.业务院长
D.著名医疗专家
E.医务科主任
参考答案:C
解析:按照医院药事管理委员会担任主任委员的人员规定。
一个盐池从100克海水里晒出2.1克盐,照这样计算,一次放入海水30万吨,共可晒出盐多少万吨?
有以下类定义 class Point public: Pointint x = 0, int y=0) _x = x; _y = y; void Move int xoff, int yoff) _x +=xoff;_y+=yoff; void Print() const cout<<’(’<<_x<<’,’<<_y<<’)’ << end1; private: int_x,_y; ; 下列语句中会发生编译错误的是
A.Point pt;pt.Print();
B.const Point pt;pt.Print();
C.Point pt;pt.Move(1, 2);
D.const Point pt;pt.Move(1, 2)