请回答下列问题:
Dim n As Integer
Dim a(1 To 20) As Integer
Dim b(1 To 20) As Integer
Dim c(1 To 20) As Integer
Private Sub Command1_Click()
Dim i As Integer, t As String, ch As String
n = 0: t = ""
Do While i <= Len(Text1.Text)
ch = Mid(Text1.Text, i, 1)
If ch = "," Then
n = n + 1
b(n) = n
t = ""
Else
t = t + ch
End If
i = i + 1
Loop
End Sub
Private Sub Command2_Click()
Dim i As Integer, j As Integer, t As Integer
For i = 1 To n - 1
For j = n To i + 1 Step -1
If Then
t = b(j): b(j) = b(j - 1): b(j - 1) = t
End If
Next j
Next i
For i = 1 To n
Label1.Caption = Label1.Caption + Str(b(i))
Label2.Caption = Label2.Caption + Str(c(i))
Next i
End Sub