患者,温病后期,夜热早凉,热退无汗,舌红苔少,脉细数。辨证为温病后期,邪伏阴分证。方剂宜选用
A.龙胆泻肝汤
B.黄连解毒汤
C.青蒿鳖甲汤
D.清瘟败毒饮
E.犀角地黄汤
参考答案:C
银行是支付结算和资金清算的中介机构。( )
下列程序的输出结果是( )。 #include<iostream.h> class Myclass { public:Myclass(int i=0,intj=0) { x=i; y=j; } void show( ) { cout < < "x=" < < x < < " " < "y=" < < y < < end1;} void show( )const { cout < < "x=" < < " " < < "y=’’ < < y < < end1;} privated: int x; int y; }; void main( ) { Myclass my1(3,4); const my2(7,8); my1.show( );my2.show( );}
A. x=4,y=3;x=7,y=8
B. x=3,y=4;x=7,y=8
C. x=7,y=8;x=4,y=3
D. x=8,y=7;x=7,y=8