在窗体中建立三个文本框,名称分别为text1、text2和text3,还有一个名称为label1的标签,一个名称为command1的命令按钮,编写如下代码:Private Sub Command1_Click( )Dim x!, y!, z!, t!x = Text1y = Text2z = Text3If x t = xx = yy = tEnd IfIf y t = yy = zz = tIf xt = xx = yy = tEnd IfEnd IfLabel1.Caption = x & ',' & y & ',' & zEnd Sub当在文本框text1、text2 和 text3 中分别输入5、3和8,则标签显示的结果为()
A.Caption
B.3,5,8
B.5,3,8
C.8,5,3
D.3.8.5