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