患者,男,16岁。食甜瓜后,腹痛阵作,大便脓血,里急后重,急于就医,黄连配伍的药物是()。
A.陈皮
B.青皮
C.香附
D.木香
E.枳实
参考答案:D
John may phone tonight,______I'll have to wait at home. [ ]
A. in this case
B. in that case
C. in which case
D. in case
在窗体上画一个名称为Command1的命令按钮,然后编写如下程序: Dim SW As Boolean Function func(X As Integer)As Integer If X<20 Then Y=X Else Y=20+X End If func=Y End Function Private Sub Form_MouseDown(Button As Integer,_ Shift As Integer,X As Single,Y As Single) SW=False End Sub Private Sub Form_MouseUp(Button As Integer,_ Shift As Integer,X As Single,Y As Single) SW=True End Sub Private Sub Command1_Click() Dim intNum As Integer intNum=InputBox(“”) If SW Then Print func(intNum) End If End Sub 程序运行后,单击命令按钮,将显示—个输入对话框,如果在对话框中输入25,则程序的执行结果为( )o
A) 输出0 B) 输出25 C) 输出45 D) 无任何输出