下列症状中属于逍遥散辨证要点的是()
A. 两胁作痛
B. 月经不调
C. 神疲食少
D. 失眠健忘
E. 脉弦
下列程序中,运行后x的值为()void main(){int a=0xa1, b=0x79;x=a&b;}
A. 0x21
B. 0x45
C. 0xf9
D. 0x94
下列程序中,运行后x的值为()void main(){int a=0xa1, b=0x79;x=a|b;}
A. 0x21
B. 0x94
C. 0xf9
D. 0x37
下列程序中,运行后x的值为()void main(){int a=0xa1, b=0x79;x=a&0xf0;}
A. 0xa0
B. 0x01
C. 0xa1
D. 0x00