vb如何读取txt文件并写入数组中?

2025-04-06 07:58:44
推荐回答(1个)
回答1:

Dim a(),k open"txt的路径"for input as #1 do until eof(#1) redim a(k) input #1,a(k) k=k+1 loop