题型:单选题 题类:常考题 难易度:普通
浙江省高中信息技术 算法及VB语言基础单元检测
Private Sub Command1_Click()
Dim a As Integer,b As Integer,c As Integer
Dim d As Integer
a=Val(Text1.Text):b=Val(Text2.Text):c=Val(Text3.Text)
d=min(a,b)+min(b,c)
Text4.Text=Str(d)
End Sub
Function min(x As Integer,y As Integer)As Integer
If x<y Then min=x Else min=y
End Function
运行该程序,在文本框Text1、文本框Text2、文本框Text3中分别输入2、-5、6后,单击命令按钮Command1,文本框Text4中显示的是( )
试题篮