譬如一個數(shù)組值
a=array("10","20","30","40","50")
如何選出大于10而小于100的數(shù)值呢
再次唐山網(wǎng)站制作提醒你一個方法:
代碼如下
以下代碼經(jīng)過測試OK
b=40c=100for i=0 to ubound(a)
if int(a(i))>b and int(a(i)) response.Write "ok"end if
next