3个回答
展开全部
dim a
dim b
dim z(24,4)
dim c,str as string
open app.apth & "\X.txt" for input as #1
do while not eof(1)
line input#1,c
str=str & c
loop
b=Split(str,vbcrlf) '取每一行的数据,共五行,所以一维数组b有五个元素,最大下标为4
for i=0 to ubound(b)
a=split(b(i)," ")
'对于每一个b的元素,取b中数据到a数组中,25列,所以数组a最大下标为24。
for j=0 to ubound(a)
z(i,j)=a(j)
next i
next i
'z(i,j)就是所得的二维数组
dim b
dim z(24,4)
dim c,str as string
open app.apth & "\X.txt" for input as #1
do while not eof(1)
line input#1,c
str=str & c
loop
b=Split(str,vbcrlf) '取每一行的数据,共五行,所以一维数组b有五个元素,最大下标为4
for i=0 to ubound(b)
a=split(b(i)," ")
'对于每一个b的元素,取b中数据到a数组中,25列,所以数组a最大下标为24。
for j=0 to ubound(a)
z(i,j)=a(j)
next i
next i
'z(i,j)就是所得的二维数组
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询