VB6.0中For语句的两种用法,如何用第二种用法遍历一个数组?
正序for i = lbound(arr) to ubound(arr)arr(i)next逆序for i = ubound(arr) to lbound(arr) step -1arr(i)next