#include<array.au3>
Local $aA[3][5]=[[1,2,3,4,5],[2,3,4,5,6],[3,4,5,6,7]]
Local $A[UBound($aA)];定义一维数组
For $i = 0 To UBound($aA, 1)-1
Local $temp[UBound($aA,2)]
For $k=0 To UBound($aA,2)-1
$temp[$k]=$aA[$i][$k]
Next
$A[$i]=$temp
next
$int=InputBox("提取","想要提取的一维数组","共有"&UBound($A)&"个一维数组")
If Not @error Then
Local $temp
$temp=$A[$int-1]
_ArrayDisplay($temp)
EndIf
for $a=0 to 10 step 1
for $a=0 to 10 step 1
for $a=0 to 10 step 1
for $a=0 to 10 step 1
……(有N个for语句)
……(有N个next语句)
next
next
next
next
怎么把N个for语句(N是个变量),用简短的语句实现,谢谢。