c = 1: s = 10
Do While c <= s
For i = s To c + 1 Step -1
If Then
t = a(i - 1): a(i - 1) = a(i): a(i) = t
End If
Next i
For i=
If Then
t = a(i + 1): a(i + 1) = a(i): a(i) = t
End If
Next i
c = c + 1
s = s - 1
Loop
上述程序段三个方框处的语句分别为( )