asp取得数组中的最大值的方法
asp取得数组中的最大值的方法
作者: 字体:[ ] 类型:转载 时间:2007-11-14
如何取得数组中的最大值(由71port_80端口提供)
该函数的作用是取得一组数组中最大的一个值,非常实用且精典,值得收藏!
复制代码 代码如下:
snum="345,231,56,786,1100,356,1200,300,685,111,134,765"
functionGetMax(str)
num=split(str,",")
max=num(0)
forii=0toubound(num)
ifcint(num(ii))>cint(max)thenmax=num(ii)
response.Write"num="&num(ii)&",max="&max&"<br/>"
next
GetMax=max
endfunction
response.Write"数组"&snum&"<br/>最大值:"&GetMax(snum)
您可能感兴趣的文章:
Tags:asp取得数组中的最大值的方法
相关文章
最新评论
大家感兴趣的内容
最近更新的内容
常用在线小工具
0
0