【单选题】P36.窗体上命令按钮command1对应的Click事件过程如下: Private Sub Command1_Click() Dim x As Integer x=InputBox("请输入x的字") Select Case x Case1,2,4,10 Debug.Print"A" Case 5 to 9 Debug.Print"B" Case Is=3 Debug.Print"C" Case...
【简答题】窗体上命令按钮 command1 对应的Click事件过程如下:Private Sub Command1_Click()Dim x As Integerx = InputBox("请输入x的值")Select Case xCase 1,2,4,10Debug.Print "A"Case 5 To 9Debug.Print "B"Case Is=3Debug.Print "C"Case ElseDe...
【单选题】P68. 窗体上有命令按钮"command1",Click事件过程如下: Private Sub Command1_Click() Dim x As Integer x=InputBox("请输入x的值") Select Case x Case 1,2,4,6 Debug.Print"A" Case5,7 To 9 Debug.Print"B" Case Is =10 Debug.Print"C"...