Private Sub Form_Click()Dim a(10) As Integera(10) = 1For i = 10 To 1 Step -1a(i - 1) = (a(i) + 1) * 2Print "第"; i; "天"; a(i)Next i
End Sub