Barrett食管的临床症状为()
A.反酸和胃灼热
B.胸骨后痛
C.出血
D.穿孔
E.腹泻
参考答案:A, B, C, D
患者男性,64岁。高血压病史6年,晨起出现复视,右侧肢体活动障碍5小时,来医院就诊。
查体:血压116/90mmHg,左眼睑下垂,左眼外斜位,左眼球向上下内活动受限,右侧偏瘫。医生拟诊为“脑血栓”。
为进一步确诊,应选择的检查是()。
A.脑血管造影
B.脑脊液检查
C.颅脑CT
D.脑电图
E.MRI
F.彩色多普勒超声检查
以下程序的执行结果是_______。 #include<iostream.h> #include<fstream.h> #include<stdlib.h> void main() { char ch: fstream file: file.open("abc.dat",ios::out1ios::inlios::binary); if(! file) { cout<<“abc.dat文件不能打开”<<endl: abort(); } file<<“12 34 56”<<endl: file.seekg(o,ios::beg): while(!file.eof()) { streampos here=file.tellg(); file.get(ch): if(ch==’’) cout<<here<<"": } cout<<endl: }