位于糖酵解、糖异生、糖原合成及分解各代谢途径交汇点上的化合物是( )
A.6-磷酸葡萄糖
B.柠檬酸
C.1-6二磷酸果糖
D.6-磷酸果糖
E.延胡索酸
参考答案:A
患者,男性,60岁。因"右肢乏力伴言语不能2小时"入院。患者近1个月来反复出现右肢乏力、言语不能共3次,每次持续约十分钟后缓解。既往有高血压、糖尿病史。入院查体:神清,右利手,BP180/105mmHg,血糖10mmol/L,双眼左凝,运动性失语,右鼻唇沟浅,伸舌不能,右肢肌力2级,右巴氏征(+)。
此时,为明确诊断,首选检查是()
A.B超
B.EEG
C.头颅MRI
D.SPECT
E.TCD
F.腰椎穿刺术
请使用“答题”菜单或使用VC6打开考生文件夹proj1下的工程proj1。程序中位于每个//ERROR************found************下的语句行有错,请加以改正。改正后程序的输出应该是: Name:Smith Age:21 ID:99999 CourseNum:12 Record:970 注意:只能修改每个//ERROR************found************下的那一行,不要改动程序中的其他内容。 //源程序 #include<iostream> using namespace std; class StudentInfo protected: //ERROR************found************ char Name[]; int Age; int ID; int CourseNum; float Record: public: //ERROR************found************ void StudentInfo(char*name, int age, int ID, int courseNum,float record); //ERROR************found************ void~StudentInfo()delete[]Name; float AverageRecord() return Record/CourseNum: void show() consL; ; StudentInfo::StudentInfo(char*name, int age, int ID, int courseNum, float record) Name=strdup(name);
Age=age;this->ID=ID:CourseNum=courseNum:Record=record:void StudentInfo::show()constcout<<"Name:"<<Name<<"Age:"<<<<"CourseNum:"<<CourseNum<<" Record:"<<Record<<endl;int main()StudentInfo st("Smith",21,99999,12,970);st.show();return 0: