2024-10-17 06:13:21
Option Explicit
Option Base 1
Dim a() As Integer, i As Integer, j As Integer, n As Integer
Private Sub Command1_Click()
n = Val(Text.Text)
Randomize
For i = 1 To n
For j = 1 To n
ReDim a(i, j)'==============这里定义下
a(i, j) = Int(Rnd * (90) + 10)
Picture1.Print a(i, j);
Next j
Picture1.Print
Next i
End Sub
还是不对
已经好了,谢谢~~
2024-10-17 01:38:30
。。。。懂了,谢谢(╯3╰)
怎么修改?