以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  如何给一组数字变量排大小?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=35073)

--  作者:comnets
--  发布时间:2013/6/23 17:59:00
--  如何给一组数字变量排大小?
如何给一组数字变量 a b c d排大小?并且按照从大到小赋值1 2 3 4?
--  作者:fjlclxj
--  发布时间:2013/6/23 18:30:00
--  
上例子
--  作者:Bin
--  发布时间:2013/6/24 9:07:00
--  
Dim Ls As new List(of Integer )
ls.Add(8)
ls.Add(3)
ls.Add(11)
ls.sort \'为这个集合排序
For Each i As Integer In ls
output.show(i)
Next