【单选题】在窗体上画1个名称为Command1的命令按钮,然后编写如下事件过程: Private Sub Command1_Click() Dim a As Integer Dim b As Integer Dim c As Integer Dim d As Integer a = 1 b = 2 c = 3 d = 4 Print IIf(a d, a, b), d) End Sub 程序运行后 , 单...
【简答题】以下程序的运行结果是 。 Dim x As Integer, y As Integer, z As Integer Sub s1(a
As Integer, b As Integer) Dim c As
Integer a = 2 * a b = b + 2 c = a + b End Sub Sub s2(a
As Integer, ByVal b As Integer) Dim c As
In...
【简答题】分析以下程序,写出运行结果。 Sub selectPrint() Dim a as Integer Dim b as Integer Dim c as Integer a=2:b=5:c=2 If(a>=b)and(a>=c) or (b>c) Then Print a a=a+2 Else Print b EndIf Print a;b;c End Sub 输出结果为:__