问题 配伍题 B型题

患者李某,男,34岁。寒战,高热、咳嗽5天,近日高热骤降,大汗肢冷,颜面苍白,呼吸急迫,四肢厥冷,唇甲青紫,神志恍惚,舌淡青紫,脉微欲绝。中医应辨证为()
某女,患肺炎3天,症见:咳嗽气促,痰声辘辘,烦躁,神昏谵语,高热不退,伴有四肢厥冷,舌红绛,苔黄而干,脉滑数。中医应辨证为()
张某,发病初起,咳嗽,咯痰不爽,痰色白而稀薄,发热轻,恶寒重,无汗,口淡不渴,头痛,鼻塞,舌质淡红,苔薄白,脉浮紧。中医应辨证为()

A.邪犯肺卫证

B.痰热壅肺证

C.热闭心神证

D.阴竭阳脱证

E.正虚邪恋证

答案

参考答案:D,C,A

问答题

【说明】 本程序的功能是实现任意两个大整数的乘法运算,例如: 输入整数1:8934793850094505800243958034985058 输入整数2:234584950989689084095803583095820923 二者之积: 209596817742739508050978890737675662366433464256830959194834854876 8534 【C++代码】 #include<iostream.h> const int MAXINPUTBIT=100; const int MAXRESULTBIT=500; class LargeNumber{ int i,j; int temp; int one[MAXINPUTBIT+1]; int onebit; //one的位数 int two[MAXINPUTBIT+1]; int twobit; //two的位数 int result[MAXRESULTBIT+1]; public: LargeNumber(); ~LargeNumber(); int inputone(); //出错返叫0,否则返回1 int inputtwo(); //同上 void multiplication(); //乘 void clearresult(); //清零 void showresult();//显示 }; LargeNumber∷LargeNumber() { for(i=0;i<=MAXINPUTBIT;i++) { one[i]=0; two[i]=0; } onebit=0; twobit=0; inputone(); inputtwo(); } LargeNumber∷~LargeNumber() { } int LargeNumber∷inputone() { char Number[MAXINPUTBIT+1]; cout<<"Please enter one:"; cin>>Number; i=0; j=MAXINPUTBIT; while(Number[i]!=’\0’) i++; onebit=i; for(i--;i>=0;i--,j--) { if(int(Number[i])>=48&&int(Number[i])<=57) (1) ; //由字符转换为数字 else return 0; } return 1; } int LargeNumber∷inputtwo() { char Number[MAXINPUTBIT+1]; cout<<"Please enter two:"; cin>>Number; i=0; j=MAXINPUTBIT; while(Number[i]!=’\0’) i++; twobit=i; for(i--;i>=0;i--,j--) { if(int(Number[i])>=48&&int(Number[i])<=57) two[j]=int(Number[i]-48); //由字符转换为数字 else return 0; } return 1; } void LargeNumber∷multiplication() //乘法 { clearresult(); int m; for(i=MAXINPUTBIT;i>=0;i--) { temp=two[i]; for(j= (2) ,m=MAXINPUTBIT;m>=0;m--,j--) { result[j]+=temp*one[m]; if(result[j]>9) { result[j-1]+=result[j]/10; (3) ; } } } cout<<"one*two="; showresult(); } void LargeNumber∷showresult() { i=0; while(result[i]==0&&i<=MAXRESULTBIT) i++; if(i>MAXRESULTBIT) cout<<"0"; //输出0 for(;i<=MAXRESULTBIT;i++) cout<< (4) ; cout<<endl; } void LargeNumber∷clearresult() { for(i=0;i<=MAXRESULTBIT;i++) (5) ; } void main() { LargeNumber a; a.multiplication();}

单项选择题