国家卫生部制定的诊断SARS的标准中不包括()。
A、发病前两周曾到过SARS疫区
B、体温正常
C、明显呼吸窘迫
D、外周血白细胞计数一般不升高,或降低
参考答案:B
CD4+T细胞的表型是()
A.TCRαβ+CD2-CD3+CD4+CD8
B.TCRαβ+CD2-CD3-CD4+CD8-
C.TCRαβ+CD2+CD3+CD4+CD8-
D.TCRγδ+CD2-CD3+CD4+CD8-
E.TCRγδ+CD2-CD3+CD4+CD8-
有以下程序: #include <iostream> using namespace std; class myclass { private:int a, b; public:void init( int i, int j ){ a = i; b = j;}friend int sum( myclass x ); }; int sum( myclass x ) {return x.a + x.b; } int main () {myclass y;y.init( 15, 20 );cout<<sum( y )<<end1;return 0; } 执行后的输出结果是( )。
A.15
B.20
C.5
D.35