我有3个数组 怎么对应取值那-----------又出 错误啦
冰镇柠檬汁儿 再来帮我看看啊 在线等你啊我的程序
response.Write "<font color='#ff0000'>颜色</font> "
for i=0 to ubound(stra)
response.Write stra(i)
next
response.Write "<br>"
'-----------------------------------------------------------------------------------------
response.Write "<font color='#ff0000'>尺寸</font> "
for i=0 to ubound(stra2)
response.Write stra2(i)
next
response.Write "<br>"
'-----------------------------------------------------------------------------------------
response.Write "<font color='#ff0000'>合计</font> "
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 "颜色:"
response.Write stra(i)
response.Write "<br>"
'-------------------------------循环读取8个记录----------------------------------------------------------
for j=0 to 8
response.Write stra2(i * 8 + j) //帮忙解释下这句什么意思
next
'-----------------------------------------------------------------------------------------
response.Write "<br>"
response.Write "合计"
response.Write stra3(i)
response.Write "<br>"
next
执行的结果
颜色 绿色 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
颜色:绿色
1 1 1 1 1 1 1 1 2 //执行错误 9个记录 我需要8个1
合计8
颜色: 111
2 2 2 2 2 2 2 2 3 //执行错误 8个2
合计 16
颜色: 白色
3 3 3 3 3 3 3 3 4 //执行错误 8个3
合计 24
颜色: 象牙白
4 4 4 4 4 4 4 4 //执行错误 8个4
合计 32
我吧那个8 改成7后 执行的结果
颜色 绿色 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
颜色:绿色
1 1 1 1 1 1 1 1 //执行正确
合计8
颜色: 111
1 2 2 2 2 2 2 2 //执行错误
合计 16
颜色: 白色
2 2 3 3 3 3 3 3 //执行错误
合计 24
颜色: 象牙白
3 3 3 4 4 4 4 4 //执行错误
合计 32
[ 本帖最后由 guang2356447 于 2010-7-29 16:53 编辑 ]