我有3个数组 怎么对应取值那-----------在线等...急
我的记录是绿色 111 白色 象牙白 //这是一个数组的取值
1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 //这是一个数组的取值
8 16 24 32 //这是一个数组的取值
下面4行是我取的 但是中间的数取错啦 应该是8个1 8个2 8个3 8个4 应该怎么写
绿色 1 8
111 1 16
白色 1 24
象牙白 1 32
我的代码
for i=0 to ubound(stra)
response.Write stra(i)
next
response.Write "<br>"
'------------------------------------------------------------第一个数组的取值-----------------------------
for i=0 to ubound(stra2)
response.Write stra2(i)
next
response.Write "<br>"
'--------------------------------------------------------------第二个数组的取值---------------------------
for i=0 to ubound(stra3)
response.Write stra3(i)
next
response.Write "<br>"
'----------------------------------------------------------------第三个数组的取值-------------------------
'总的-----------------------
response.Write "<br>"
for i=0 to ubound(stra)
response.Write stra(i)
response.Write stra2(i)
response.Write stra3(i)
response.Write "<br>"
next
[ 本帖最后由 guang2356447 于 2010-7-29 11:10 编辑 ]