按选择排序法排序。

来源:互联网 发布:网盘网站源码 编辑:程序博客网 时间:2024/04/30 03:56
Private Sub Command1_Click()
Me.Font.Size = 50

Dim a(10) As Integer
Dim i As Integer
 For i = 1 To 10
   a(i) = 10 + Int(Rnd() * 100)
   Print a(i)
 Next i
Print


End Sub

   
 还没开始排序 - -   

0 0