4,5,6,7,8,9".
private sub command1_click()
dim A(10) as integer, k as integer, t as integer
randomize
for k = 1 to 10
A(k) = int(90*rnd)+10
text1 = text1&str(A(k))
next
T=A(10)
for k=10 to 2 step -1
A(k) = A(k-1)
next
A(1) = T
For k = 1 to 10
text2 = text2&str(A(k))
next
end sub
这里的text1 = text1&str(A(k))是什么意思?
A(1) = T
For k = 1 to 10
text2 = text2&str(A(k))
是什么意思???