某女,45岁。因思虑过度,二年不寐,百药无效,脉缓。据《内经》情志相胜的原理,当采用以下何种治法()。
A.喜胜忧
B.怒胜思
C.恐胜忧
D.恐胜思
E.悲胜思
参考答案:B
小儿,l岁。检查示小儿体格发育正常,测得小儿头围应约是()
A.38cm
B.40cm
C.46cm
D.48cm
E.50cm
使用VC6打开考生文件夹下的工程test22_1,此工程包含—个源程序文件test22_1.cpp,但该程序运行有问题,请改正程序中的错误,使程序的输出结果为: 6/15 3/4 9/19 源程序文件test22_1.cpp清单如下: #include<iostream.h> class Franction {int nume;int deno; public:Franction FranAdd(const Franction& x){ this->nume+=x.nume; this->deno+=x.deno; /****************found*******************/ return this;}void InitFranction() {nume=0; deno=l;}void InitFranction(int n, int d) {nume=n; deno=d;}void FranOutput() {cout<<nume<<’/’<<deno<<endl;} }; void main() {Franction *a=new Franction;Franction *b=new Franction;a->InitFranction(6,15);b->InitFranction(3,4);a->FranOutput();b->FranOutput();Franction c; /****************found*******************/c->InitFranction(); /****************found*******************/c=a->FranAdd(b);c. FranOutput(); }