肾挫伤非手术治疗,需要绝对卧床的时间是()
A.1周
B.2周
C.3周
D.4周
E.5周
参考答案:B
解析:肾挫伤患者非手术治疗期间,需绝对卧床2周,防止过早活动引起再次出血。
基本模数
有如下程序: #include <iostream> using namespace std; class Con char ID; public: Con( ):ID(’A’)cout<<1; Con(char ID) :ID(ID) eout<<2; Con(Con&C) :ID(C.getID( ))cout<<3; char getID( )constreturn ID; ; void show(Con e)cout<<e.getID( ); int main( ) Con cl; show(c1); Con c2(’B’); show(c2); return 0; 程序的输出结果是______。